File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export const Ads: any; // export { default as Ads } from './src/Ads'
22
22
export { AppData , FontFaceDefinition } from './src/Application/index.js' ;
23
23
export { default as Application } from './src/Application/index.js' ;
24
24
export const AudioPlayer : any ; // export { default as AudioPlayer } from './src/AudioPlayer'
25
- export const Colors : any ; // export { default as Colors } from './src/Colors'
25
+ export { default as Colors } from './src/Colors'
26
26
export { default as Img } from './src/Img/index.js' ;
27
27
export const Keyboard : any ; // export { default as Keyboard } from './src/Keyboard'
28
28
export { default as Launch } from './src/Launch/index.js' ;
Original file line number Diff line number Diff line change
1
+ export type ColorTransform = {
2
+ alpha ( value : number ) : ColorTransform ;
3
+ hue ( value : number ) : ColorTransform ;
4
+ lightness ( value : number ) : ColorTransform ;
5
+ saturation ( value : number ) : ColorTransform ;
6
+ lighter ( value : number ) : ColorTransform ;
7
+ darker ( value : number ) : ColorTransform ;
8
+ mix ( color : string , percentage : number ) : ColorTransform ;
9
+ get ( ) : number ;
10
+ } ;
11
+
12
+ export type Colors = {
13
+ ( colorName : string ) : ColorTransform ;
14
+ } & {
15
+ [ colorName : string ] : ColorTransform ;
16
+ } ;
You can’t perform that action at this time.
0 commit comments