mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-08 17:33:15 +01:00
14 lines
No EOL
236 B
TypeScript
14 lines
No EOL
236 B
TypeScript
|
|
export interface Plugin<InContext, OutContext> {
|
|
|
|
id: string;
|
|
|
|
dependencies: string[];
|
|
|
|
activate(ctx: InContext & OutContext): () => void | void;
|
|
|
|
}
|
|
|
|
export function activatePlugins(plugins: Plugin<any, any>[], context: any) {
|
|
|
|
} |