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