silverbullet/plugos/types.ts

29 lines
705 B
TypeScript
Raw Normal View History

import { System } from "./system.ts";
2022-10-12 17:47:13 +08:00
import { AssetJson } from "./asset_bundle/bundle.ts";
export interface Manifest<HookT> {
2022-04-27 01:04:36 +08:00
name: string;
2022-03-25 19:03:06 +08:00
requiredPermissions?: string[];
2022-10-12 17:47:13 +08:00
assets?: string[] | AssetJson;
functions: {
2022-03-27 17:26:13 +08:00
[key: string]: FunctionDef<HookT>;
};
}
2022-03-27 17:26:13 +08:00
export type FunctionDef<HookT> = {
// Read the function from this path and inline it
// Format: filename:functionName
path?: string;
// Reuse an
// Format: plugName.functionName
redirect?: string;
2022-03-23 22:41:12 +08:00
env?: RuntimeEnvironment;
2022-03-27 17:26:13 +08:00
} & HookT;
2022-03-23 22:41:12 +08:00
export type RuntimeEnvironment = "client" | "server";
export interface Hook<HookT> {
2022-03-23 22:41:12 +08:00
validateManifest(manifest: Manifest<HookT>): string[];
apply(system: System<HookT>): void;
}