1
0
silverbullet/packages/plugos/types.ts
Zef Hemel 76636dd9b1 Work
2022-04-26 19:04:36 +02:00

24 lines
476 B
TypeScript

import { System } from "./system";
export interface Manifest<HookT> {
name: string;
requiredPermissions?: string[];
functions: {
[key: string]: FunctionDef<HookT>;
};
}
export type FunctionDef<HookT> = {
path?: string;
code?: string;
env?: RuntimeEnvironment;
} & HookT;
export type RuntimeEnvironment = "client" | "server";
export interface Hook<HookT> {
validateManifest(manifest: Manifest<HookT>): string[];
apply(system: System<HookT>): void;
}