cvdl-ts 1.0.17 → 1.0.18
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/DataSchema.d.ts +2 -2
- package/dist/DataSchema.js +2 -1
- package/package.json +1 -1
package/dist/DataSchema.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare namespace DateFormat {
|
|
2
|
-
type t = "YYYY-MM-DD" | "MM-DD-YYYY" | "DD-MM-YYYY" | "YYYY/MM/DD" | "MM/DD/YYYY" | "DD/MM/YYYY" | "Month, YYYY" | "DD Month, YYYY" | "Month DD, YYYY" | "Mon YYYY" | "Mon DD, YYYY" | "YYYY";
|
|
3
|
-
const formats: readonly ["YYYY-MM-DD", "MM-DD-YYYY", "DD-MM-YYYY", "YYYY/MM/DD", "MM/DD/YYYY", "DD/MM/YYYY", "Month, YYYY", "DD Month, YYYY", "Month DD, YYYY", "Mon YYYY", "Mon DD, YYYY", "YYYY"];
|
|
2
|
+
type t = "YYYY-MM-DD" | "MM-DD-YYYY" | "DD-MM-YYYY" | "YYYY/MM/DD" | "MM/DD/YYYY" | "DD/MM/YYYY" | "Month, YYYY" | "DD Month, YYYY" | "Month DD, YYYY" | "Mon YYYY" | "Mon DD, YYYY" | "YYYY" | "unknown";
|
|
3
|
+
const formats: readonly ["YYYY-MM-DD", "MM-DD-YYYY", "DD-MM-YYYY", "YYYY/MM/DD", "MM/DD/YYYY", "DD/MM/YYYY", "Month, YYYY", "DD Month, YYYY", "Month DD, YYYY", "Mon YYYY", "Mon DD, YYYY", "YYYY", "unknown"];
|
|
4
4
|
const print: (date: string, format: t) => string;
|
|
5
5
|
const parse: (date: string) => string;
|
|
6
6
|
}
|
package/dist/DataSchema.js
CHANGED