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