75674df502
ClientAPI: use Axios ServerAPI: use @koa/router FullDate: wrapped Date only class APIPromise: enhanced Promise on api response application/json only(multipart/*, image/*, ... are not supported) get, post, put, delete, patch only
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
export declare class FullDate {
|
|
private date;
|
|
constructor(...argv: any);
|
|
toString(): string;
|
|
toJSON(): string;
|
|
valueOf(): number;
|
|
getFullYear(): number;
|
|
getMonth(): number;
|
|
getDate(): number;
|
|
}
|