banira
    Preparing search index...

    Interface Attribute

    interface Attribute {
        default?: string;
        deprecated?: string | boolean;
        description?: string;
        fieldName?: string;
        name: string;
        type?: { text: string };
        values?: string[];
    }
    Index

    Properties

    default?: string
    deprecated?: string | boolean

    Present when the attribute is marked @deprecated; the string is the deprecation note, if any.

    description?: string
    fieldName?: string
    name: string
    type?: { text: string }
    values?: string[]

    The allowed values when the backing property is a string-literal union ('sm' | 'md' | 'lg'). Lets downstream generators emit enums: .d.ts unions, VS Code custom-data values, and Storybook options.