@3mo/theme
Version:
Tools & tokens for theming 3MO components & applications.
12 lines • 381 B
TypeScript
import { LocalStorage } from '@a11d/local-storage';
export declare enum Background {
System = "system",
Light = "light",
Dark = "dark"
}
export declare class BackgroundStorage extends LocalStorage<Background> {
constructor();
get calculatedValue(): Background.Light | Background.Dark;
private updateAttributeValue;
}
//# sourceMappingURL=Background.d.ts.map