monaco-yaml
Version:
YAML plugin for the Monaco Editor
16 lines (13 loc) • 328 B
text/typescript
function getTrue(): boolean {
return true
}
export default class AJVStub {
// eslint-disable-next-line @typescript-eslint/class-methods-use-this
compile(): () => boolean {
return getTrue
}
// eslint-disable-next-line @typescript-eslint/class-methods-use-this
defaultMeta(): undefined {
// Do nothing
}
}