chore: src/svg.d.ts -> typings/svg.d.ts

More appropriate to be stored in the typings directory, as it is
not a source file, but a type definition file for SVGs.
This commit is contained in:
Tony Narlock
2024-03-16 06:22:06 -05:00
parent 482f7b34c4
commit 7bd6a7f57c

4
typings/svg.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
declare module '*.svg' {
const src: string;
export default src;
}