ados-rcm 1.0.246 → 1.0.247

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.
@@ -1,17 +1,29 @@
1
+ declare global {
2
+ interface Array<T> {
3
+ includes(value: any): value is T;
4
+ }
5
+ interface ReadonlyArray<T> {
6
+ includes(value: any): value is T;
7
+ }
8
+ }
1
9
  type CSSModuleClasses = {
2
10
  readonly [key: string]: string;
3
11
  };
4
- declare function clsx(...args: any[]): string;
5
- declare function sclsx(styles: CSSModuleClasses, ...args: any[]): string;
12
+ declare const classes: Readonly<{
13
+ NoSelect: any;
14
+ IsClickable: string;
15
+ }>;
16
+ declare function clsx(...args: (keyof typeof classes)[] | any[]): string;
17
+ declare function sclsx(styles: CSSModuleClasses, ...args: (keyof typeof classes)[] | any[]): string;
6
18
  /**
7
19
  * sF : Style Functions
8
20
  */
9
21
  export declare const sF: {
10
22
  clsx: typeof clsx;
11
23
  sclsx: typeof sclsx;
12
- classes: {
24
+ classes: Readonly<{
13
25
  NoSelect: any;
14
26
  IsClickable: string;
15
- };
27
+ }>;
16
28
  };
17
29
  export {};