FrontmatterField
eslint-plugin-copilot Documentation v1.1.4
eslint-plugin-copilot Documentation / _internal/frontmatter / FrontmatterField
Type Alias: FrontmatterField
type FrontmatterField =
| Readonly<{
kind: "list";
values: readonly string[];
}>
| Readonly<{
kind: "scalar";
value: string;
}>;
Defined in: _internal/frontmatter.ts:17
Parsed frontmatter field variants supported by this plugin.