UNPKG

261 BTypeScriptView Raw
1/**
2 * 判断是否有效的Date对象
3 * @param val 值
4 */
5export declare function isValidDate(val: any): val is Date;
6
7declare module './ctor' {
8 interface XEUtilsMethods {
9 isValidDate: typeof isValidDate;
10 }
11}
12
13export default isValidDate