Dependency builds for plugos

This commit is contained in:
Zef Hemel
2022-05-13 14:36:26 +02:00
parent 8c974161c3
commit 3c5048ac25
29 changed files with 309 additions and 76 deletions
+3
View File
@@ -3,6 +3,9 @@ import { System } from "./system";
export interface Manifest<HookT> {
name: string;
requiredPermissions?: string[];
dependencies?: {
[key: string]: string;
};
functions: {
[key: string]: FunctionDef<HookT>;
};