2023-11-23 05:10:37 +01:00
|
|
|
import type { LysandObjectType } from "./Object";
|
2023-11-04 04:34:31 +01:00
|
|
|
|
|
|
|
|
export interface ExtensionType extends LysandObjectType {
|
2024-04-07 07:30:49 +02:00
|
|
|
type: "Extension";
|
|
|
|
|
extension_type: string;
|
2023-11-04 04:34:31 +01:00
|
|
|
}
|