ados-rcm 1.0.247 → 1.0.248

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,7 +14,7 @@ declare const classes: Readonly<{
14
14
  IsClickable: string;
15
15
  }>;
16
16
  declare function clsx(...args: (keyof typeof classes)[] | any[]): string;
17
- declare function sclsx(styles: CSSModuleClasses, ...args: (keyof typeof classes)[] | any[]): string;
17
+ declare function sclsx<T extends CSSModuleClasses>(styles: T, ...args: (keyof T)[] | (keyof typeof classes)[] | any[]): string;
18
18
  /**
19
19
  * sF : Style Functions
20
20
  */