1 | // Type definitions for is-date-object 1.0
|
2 | // Project: https://github.com/ljharb/is-date-object
|
3 | // Definitions by: Jordan Harband <https://github.com/ljharb>
|
4 | // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
5 |
|
6 | declare function isDateObject(value?: any): boolean;
|
7 |
|
8 | export = isDateObject;
|