Files
yaak/src-web/plugin/runtime.d.ts
Gregory Schier 392b549646 Deno plugins (#42)
Switch from BoaJS to Deno core
2024-06-07 10:47:41 -07:00

11 lines
136 B
TypeScript

declare global {
const YAML: {
parse: (yml: string) => unknown;
};
interface YaakContext {
foo: string;
}
}
export {};