Get: {
    camelCase?: boolean;
    depth?: number;
    resolve?: string | Iterable<string>;
    warnCycles?: boolean;
    warnResolve?: boolean;
}

Type declaration

  • OptionalcamelCase?: boolean

    When true, returned property keys will be in camel case. CSS variable key names are not converted.

    false

  • Optionaldepth?: number

    Resolution depth for CSS variable substitution. By default, the depth is the length of the provided resolve selectors, but you may opt to provide a specific depth even with multiple resolution selectors.

  • Optionalresolve?: string | Iterable<string>

    Additional parent selectors as CSS variable resolution sources.

  • OptionalwarnCycles?: boolean

    When true and resolving CSS variables cyclic / self-referential CSS variable associations are detected.

    false

  • OptionalwarnResolve?: boolean

    When true, missing parent-selector in fallback-chain are logged.

    false