@ws-ui/formatter 1.10.3 → 1.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/date.d.ts +1 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.es.js +225 -217
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/date.d.ts
CHANGED
|
@@ -2,3 +2,4 @@ export declare const INVALID_DATE: string;
|
|
|
2
2
|
export declare function parseDateFormat(format: string, locale: string): any;
|
|
3
3
|
export declare function isValidDate(value: Date | number): boolean;
|
|
4
4
|
export declare function formatDate(value: Date | number, format: string, language: string): string;
|
|
5
|
+
export declare function parseStringDate(value: string): Date;
|