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