-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e9fb08c
commit 48fe363
Showing
10 changed files
with
4,671 additions
and
23,386 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,66 @@ | ||
/// <reference types="react-scripts" /> | ||
/// <reference types="vite/client" /> | ||
|
||
/// <reference types="node" /> | ||
/// <reference types="react" /> | ||
/// <reference types="react-dom" /> | ||
|
||
declare module "*.avif" { | ||
const src: string; | ||
export default src; | ||
} | ||
|
||
declare module "*.bmp" { | ||
const src: string; | ||
export default src; | ||
} | ||
|
||
declare module "*.gif" { | ||
const src: string; | ||
export default src; | ||
} | ||
|
||
declare module "*.jpg" { | ||
const src: string; | ||
export default src; | ||
} | ||
|
||
declare module "*.jpeg" { | ||
const src: string; | ||
export default src; | ||
} | ||
|
||
declare module "*.png" { | ||
const src: string; | ||
export default src; | ||
} | ||
|
||
declare module "*.webp" { | ||
const src: string; | ||
export default src; | ||
} | ||
|
||
declare module "*.svg" { | ||
import * as React from "react"; | ||
|
||
export const ReactComponent: React.FunctionComponent< | ||
React.SVGProps<SVGSVGElement> & { title?: string } | ||
>; | ||
|
||
const src: string; | ||
export default src; | ||
} | ||
|
||
declare module "*.module.css" { | ||
const classes: { readonly [key: string]: string }; | ||
export default classes; | ||
} | ||
|
||
declare module "*.module.scss" { | ||
const classes: { readonly [key: string]: string }; | ||
export default classes; | ||
} | ||
|
||
declare module "*.module.sass" { | ||
const classes: { readonly [key: string]: string }; | ||
export default classes; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.