mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
import type { LysandObjectType } from "./Object";
|
|
|
|
export interface ExtensionType extends LysandObjectType {
|
|
type: "Extension";
|
|
extension_type: string;
|
|
}
|