15 lines
258 B
TypeScript
15 lines
258 B
TypeScript
|
// import original module declarations
|
||
|
import "styled-components";
|
||
|
|
||
|
// and extend them!
|
||
|
declare module "styled-components" {
|
||
|
export interface DefaultTheme {
|
||
|
borderRadius: string;
|
||
|
|
||
|
colors: {
|
||
|
main: string;
|
||
|
secondary: string;
|
||
|
};
|
||
|
}
|
||
|
}
|