react-ui89
Version:
A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.
12 lines (11 loc) • 330 B
TypeScript
export interface DateComponents {
hours: number;
minutes: number;
seconds: number;
milliseconds: number;
day: number;
month: number;
year: number;
}
export declare function dateFormat(date: Date, format: string): string;
export declare function dateParse(dateStr: string, format: string): Date | null;