Skip to content

Home > fff-flavored-frontmatter > FFFBase

FFFBase type

Base Variables

Signature:

typescript
type FFFBase<T extends (boolean | undefined) = undefined> = {
    categories?: T extends false ? never : string[];
    flags?: string[];
    summary?: string;
    tags?: string[];
    title?: string;
};