@sveltia/cms 0.119.2 → 0.120.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/types/public.d.ts CHANGED
@@ -1334,9 +1334,9 @@ export type FileExtension = "yml" | "yaml" | "toml" | "json" | "md" | "markdown"
1334
1334
  */
1335
1335
  export type FrontMatterFormat = "yaml-frontmatter" | "toml-frontmatter" | "json-frontmatter";
1336
1336
  /**
1337
- * Supported file format.
1337
+ * Supported file format. Actually it can be any string because of custom formats.
1338
1338
  */
1339
- export type FileFormat = "yml" | "yaml" | "toml" | "json" | "frontmatter" | FrontMatterFormat;
1339
+ export type FileFormat = "yml" | "yaml" | "toml" | "json" | "frontmatter" | FrontMatterFormat | string;
1340
1340
  /**
1341
1341
  * Collection filter options.
1342
1342
  */