9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
export declare class TimeUtil {
|
|
static readonly oneHourAsSeconds = 3600;
|
|
formatTime(date: Date): string;
|
|
formatDate(date: Date): string;
|
|
getDate(): string;
|
|
getTime(): string;
|
|
getTimestamp(): number;
|
|
}
|