main-site/styled.d.ts
Neshura 21e613891e
Added styled-components + various
Includes changes due to NextJS version bump and attempts at storing theme via cookie
2022-12-14 19:35:27 +01:00

12 lines
217 B
TypeScript

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