UNPKG

303 BTypeScriptView Raw
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
6declare function isDateObject(value?: any): boolean;
7
8export = isDateObject;