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

Properties

camelCase?: boolean

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

false

depth?: 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.

resolve?: string | Iterable<string>

Additional parent selectors as CSS variable resolution sources.

warnCycles?: boolean

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

false

warnResolve?: boolean

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

false