mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
* Apply standard lint rules to domready. * Apply strict null checks to domready. * Return value of callback is not used so declare it void. * Set domready version number. domready types are up to date as of domready 1.0.8.
10 lines
328 B
TypeScript
10 lines
328 B
TypeScript
// Type definitions for domready 1.0
|
|
// Project: https://github.com/ded/domready
|
|
// Definitions by: Christian Holm Nielsen <https://github.com/dotnetnerd>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function domready(callback: () => void): void;
|
|
|
|
export = domready;
|
|
export as namespace domready;
|