KC's Workspace
    Preparing search index...

    A CSS <dashed-ident> reference.

    Dashed idents are used in cases where an identifier can be either author defined or CSS-defined. Author defined idents must start with two dash characters ("--") or parsing will fail.

    In CSS modules, when the dashed_idents option is enabled, the identifier may be followed by the from keyword and an argument indicating where the referenced identifier is declared (e.g. a filename).

    interface DashedIdentReference {
        from?: Specifier | null;
        ident: string;
    }
    Index

    Properties

    Properties

    from?: Specifier | null

    CSS modules extension: the filename where the variable is defined. Only enabled when the CSS modules dashed_idents option is turned on.

    ident: string

    The referenced identifier.