Files
DefinitelyTyped/types/element-ready/element-ready-tests.ts
T

10 lines
160 B
TypeScript

import elementReady = require('element-ready');
const p = elementReady('#unicorn');
p.then(element => {
const el: HTMLElement = element;
});
p.cancel();