Commit b1d1490 1 parent 0c6090f commit b1d1490 Copy full SHA for b1d1490
File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ function css() {
9
9
module . exports = css ;
10
10
11
11
/* ::
12
- declare module.exports: (string[], Array<string | number | {}>) => string;
12
+ declare module.exports: (strings: string[], ...exprs: Array<string | number | {}>) => string;
13
13
*/
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ if (process.env.NODE_ENV !== 'production') {
70
70
/* ::
71
71
type StyledComponent<T> = React.ComponentType<T & { as?: React$ElementType }>;
72
72
73
- type StyledTag<T> = (string[], Array<string | number | {} | (T => string | number)>) => StyledComponent<T>;
73
+ type StyledTag<T> = (strings: string[], ...exprs: Array<string | number | {} | (T => string | number)>) => StyledComponent<T>;
74
74
75
75
declare module.exports: {|
76
76
<T>(T): StyledTag<React.ElementConfig<T>>,
You can’t perform that action at this time.
0 commit comments