alicecss overhaul

This commit is contained in:
CoolElectronics 2024-01-27 16:43:31 -05:00
parent 92fc04197a
commit 654e44dbd7
No known key found for this signature in database
GPG key ID: F63593D168636C50
2 changed files with 58 additions and 23 deletions

3
AliceJS.d.ts vendored
View file

@ -21,7 +21,8 @@ declare function stateful<T>(target: T): Stateful<T>;
declare function handle<T>(references: AliceJSReferenceSink<T>, callback: (value: T) => void): void;
declare function css(strings: TemplateStringsArray, ...values: any): string;
declare var styled: { new: typeof css };
declare function rule(strings: TemplateStringsArray, ...values: any): string;
declare var styled: { new: typeof css, rule: typeof rule };
type DLCSS = string;