WindowExt.d.ts 234 B

12345678
  1. /**
  2. * Defines the interface to what is available for the host to call or for the client to call on the window object
  3. */
  4. interface Window {
  5. atomicQuery: any;
  6. HOST_loadCode: (codeUrl) => void;
  7. HOST_saveCode: () => void;
  8. }