Deno plugins (#42)

Switch from BoaJS to Deno core
This commit is contained in:
Gregory Schier
2024-06-07 10:47:41 -07:00
committed by GitHub
parent 993d4dc65d
commit 392b549646
32 changed files with 1378 additions and 5663 deletions

10
src-web/plugin/runtime.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
declare global {
const YAML: {
parse: (yml: string) => unknown;
};
interface YaakContext {
foo: string;
}
}
export {};