forked from cristianbote/goober
-
Notifications
You must be signed in to change notification settings - Fork 0
/
goober.d.ts
84 lines (73 loc) · 2.91 KB
/
goober.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import { Properties as CSSProperties } from 'csstype';
export = goober;
export as namespace goober;
declare namespace goober {
interface DefaultTheme {}
type Theme<T extends object> = keyof T extends never ? T : { theme: T };
interface StyledFunction {
// used when creating a styled component from a native HTML element
<T extends keyof JSX.IntrinsicElements, P extends Object = {}>(
tag: T,
forwardRef?: ForwardRefFunction
): Tagged<
JSX.LibraryManagedAttributes<T, JSX.IntrinsicElements[T]> & P & Theme<DefaultTheme>
>;
// used to extend other styled components. Inherits props from the extended component
<PP extends Object = {}, P extends Object = {}>(
tag: StyledVNode<PP>,
forwardRef?: ForwardRefFunction
): Tagged<PP & P & Theme<DefaultTheme>>;
// used when creating a component from a string (html native) but using a non HTML standard
// component, such as when you want to style web components
<P extends Object = {}>(tag: string): Tagged<P & Partial<JSX.ElementChildrenAttribute>>;
// used to create a styled component from a JSX element (both functional and class-based)
<T extends JSX.Element | JSX.ElementClass, P extends Object = {}>(
tag: T,
forwardRef?: ForwardRefFunction
): Tagged<P>;
}
type ForwardRefFunction = {
(props: any, ref: any): any;
};
type ForwardPropsFunction = {
(props: object): undefined;
};
const styled: StyledFunction;
function setup<T>(
val: T,
prefixer?: (key: string, val: any) => string,
theme?: Function,
forwardProps?: ForwardPropsFunction
): void;
function extractCss(): string;
function glob(
tag: CSSAttribute | TemplateStringsArray | string,
...props: Array<string | number>
): void;
function css(
tag: CSSAttribute | TemplateStringsArray | string,
...props: Array<string | number>
): string;
function keyframes(
tag: CSSAttribute | TemplateStringsArray | string,
...props: Array<string | number>
): string;
type StyledVNode<T> = (props: T, ...args: any[]) => any;
type StylesGenerator<P extends Object = {}> = (props: P) => CSSAttribute | string;
type Tagged<P extends Object = {}> = <PP extends Object = {}>(
tag:
| CSSAttribute
| (CSSAttribute | StylesGenerator<P & PP>)[]
| TemplateStringsArray
| string
| StylesGenerator<P & PP>,
...props: Array<
| string
| number
| ((props: P & PP) => CSSAttribute | string | number | false | undefined)
>
) => StyledVNode<Omit<P & PP, keyof Theme<DefaultTheme>>>;
interface CSSAttribute extends CSSProperties {
[key: string]: CSSAttribute | string | number | undefined;
}
}