import type { FrontmatterFieldValue } from './frontmatter-field-value.js'; import type { FrontmatterScalar } from './frontmatter-scalar.js'; /** A top-level frontmatter value: a scalar, a scalar list, a list of maps, or a map. */ export type FrontmatterValue = FrontmatterScalar | readonly FrontmatterScalar[] | ReadonlyArray>> | Readonly>; //# sourceMappingURL=frontmatter-value.d.ts.map