salve-annos
Version:
A fork with support for documentation of Salve, a Javascript library which implements a validator able to validate an XML document on the basis of a subset of RelaxNG.
15 lines (13 loc) • 297 B
TypeScript
/**
* Fix omissions in the global declarations.
*/
//
// We need this because we access function names.
//
declare interface Function {
name: string;
}
declare interface Object {
// tslint:disable-next-line: prefer-method-signature
setPrototypeOf?: (obj: any, proto: Function) => void;
}