@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
7 lines • 322 B
TypeScript
/**
* Parses date string and returns Date object or null.
*
* We cannot use new Date(string) constructor, because it produces GMT time that may have different date than the local.
*/
export declare function parseDate(value: string): Date;
export declare function parseDate(value: string, strict: boolean): Date | null;