mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-06-14 02:14:27 +02:00
392b549646
Switch from BoaJS to Deno core
11 lines
136 B
TypeScript
11 lines
136 B
TypeScript
declare global {
|
|
const YAML: {
|
|
parse: (yml: string) => unknown;
|
|
};
|
|
interface YaakContext {
|
|
foo: string;
|
|
}
|
|
}
|
|
|
|
export {};
|