KC's Workspace
    Preparing search index...

    Type Alias EnvironmentVariableName

    EnvironmentVariableName:
        | { type: "ua"; value: UAEnvironmentVariable }
        | { from?: Specifier | null; ident: String; type: "custom" }
        | { type: "unknown"; value: String }

    A CSS environment variable name.

    Type Declaration

    • { type: "ua"; value: UAEnvironmentVariable }
    • { from?: Specifier | null; ident: String; type: "custom" }
      • Optionalfrom?: 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.

      • type: "custom"
    • { type: "unknown"; value: String }