mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 13:43:39 +01:00
11 lines
136 B
TypeScript
11 lines
136 B
TypeScript
declare global {
|
|
const YAML: {
|
|
parse: (yml: string) => unknown;
|
|
};
|
|
interface YaakContext {
|
|
foo: string;
|
|
}
|
|
}
|
|
|
|
export {};
|