Fixed #4530 - Export styles of all components

This commit is contained in:
mertsincan 2023-10-02 11:46:09 +01:00
parent 7b6d458067
commit dc2913e887
463 changed files with 10696 additions and 9670 deletions

View file

@ -6,6 +6,7 @@ export interface StyleOptions {
id?: string;
media?: string;
nonce?: string;
props?: any;
}
export declare function useStyle(
@ -16,6 +17,6 @@ export declare function useStyle(
name: string;
css: any;
unload: () => void;
load: (css?: string, options?: any) => void;
load: (css?: string, props?: any) => void;
isLoaded: boolean;
};