UNPKG

react-ui89

Version:

A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.

11 lines (10 loc) 249 B
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;