Front end of the Slack clone application.

util.d.ts 564B

12345678910111213141516171819202122232425
  1. /**
  2. * @private
  3. */
  4. export declare const get: (element: Window | Element, path: string) => any;
  5. /**
  6. * @private
  7. */
  8. export declare const getPromise: (callback: Function) => Promise<any>;
  9. /**
  10. * @private
  11. * @param pluginRef
  12. * @returns {null|*}
  13. */
  14. export declare const getPlugin: (pluginRef: string) => any;
  15. /**
  16. * @private
  17. */
  18. export declare const pluginWarn: (pluginName: string, plugin?: string, method?: string) => void;
  19. /**
  20. * @private
  21. * @param pluginName
  22. * @param method
  23. */
  24. export declare const cordovaWarn: (pluginName: string, method?: string) => void;