system_external.d.ts 459 B

12345678910111213141516
  1. export declare class SystemExternal {
  2. static nodeRequire(): any;
  3. static extRequire(library: string): any;
  4. static windowSupported: boolean;
  5. static documentSupported: boolean;
  6. static xmldom: any;
  7. static document: Document;
  8. static xpath: any;
  9. static mathmapsIePath: string;
  10. static fs: any;
  11. static url: string;
  12. static jsonPath: any;
  13. static WGXpath: string;
  14. static wgxpath: any;
  15. }
  16. export default SystemExternal;