mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +00:00
19 lines
273 B
TypeScript
19 lines
273 B
TypeScript
declare module 'yawn-yaml' {
|
|
export default class YAWN {
|
|
constructor(content: string);
|
|
|
|
json: any;
|
|
|
|
yaml: string;
|
|
}
|
|
}
|
|
|
|
declare module 'yawn-yaml/cjs' {
|
|
export default class YAWN {
|
|
constructor(content: string);
|
|
|
|
json: any;
|
|
|
|
yaml: string;
|
|
}
|
|
}
|