Archived
1
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
api-ts-gen/dist/utils/FullDate.d.ts

11 lines
226 B
TypeScript
Raw Normal View History

export declare class FullDate {
private date;
constructor(...argv: any);
toString(): string;
toJSON(): string;
valueOf(): number;
getFullYear(): number;
getMonth(): number;
getDate(): number;
}