mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
401 B
TypeScript
11 lines
401 B
TypeScript
// Type definitions for element-ready 2.1
|
|
// Project: https://github.com/sindresorhus/element-ready#readme
|
|
// Definitions by: BendingBender <https://github.com/BendingBender>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import pCancelable = require('p-cancelable');
|
|
|
|
export = elementReady;
|
|
|
|
declare function elementReady(selector: string): pCancelable.PCancelable<HTMLElement>;
|