util.d.ts 238 B

1234567891011
  1. /**
  2. * @param element
  3. * @param path
  4. * @private
  5. */
  6. export declare function get(element: Element | Window, path: string): any;
  7. /**
  8. * @param callback
  9. * @private
  10. */
  11. export declare function getPromise(callback?: Function): Promise<any>;