main-site/styled.d.ts
2022-12-15 21:23:45 +01:00

13 lines
242 B
TypeScript

import 'styled-components'
declare module 'styled-components' {
export interface DefaultTheme {
themeName: string,
themeId: number,
colors: {
background: string,
primary: string,
secondary: string,
}
}
}