DefinitelyTyped/types/element-ready/element-ready-tests.ts
2017-08-09 10:31:49 -07:00

10 lines
160 B
TypeScript

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