Type Alias Get
type Get = {
camelCase?: boolean;
depth?: number;
resolve?: string | Iterable<string>;
warnCycles?: boolean;
warnResolve?: boolean;
}
camelCase?: boolean;
depth?: number;
resolve?: string | Iterable<string>;
warnCycles?: boolean;
warnResolve?: boolean;
}
Index
Properties
Properties
OptionalcamelCase 
camelCase?: boolean
When true, returned property keys will be in camel case. CSS variable key names are not converted.
Optionaldepth
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.
Optionalresolve
Additional parent selectors as CSS variable resolution sources.
OptionalwarnCycles 
warnCycles?: boolean
When true and resolving CSS variables cyclic / self-referential CSS variable associations are detected.
OptionalwarnResolve 
warnResolve?: boolean
When true, missing parent-selector in fallback-chain are logged.
Optional options for StyleSheetResolve.get and StyleSheetResolve.getProperty.