landing
This commit is contained in:
10
@types/emotion.d.ts
vendored
Normal file
10
@types/emotion.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import '@emotion/react';
|
||||
|
||||
import { lightTheme } from '../src/app.theme';
|
||||
|
||||
declare module '@emotion/react' {
|
||||
export interface Theme {
|
||||
colors: typeof lightTheme.colors,
|
||||
shadows: typeof lightTheme.shadows
|
||||
}
|
||||
}
|
||||
19
@types/index.d.ts
vendored
Normal file
19
@types/index.d.ts
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
declare const IS_PROD: string;
|
||||
|
||||
declare module '*.svg' {
|
||||
const value: string;
|
||||
|
||||
export default value;
|
||||
}
|
||||
|
||||
declare module '*.jpg' {
|
||||
const value: string;
|
||||
|
||||
export default value;
|
||||
}
|
||||
|
||||
declare module '*.png' {
|
||||
const value: string;
|
||||
|
||||
export default value;
|
||||
}
|
||||
Reference in New Issue
Block a user