mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-10 02:02:29 +08:00

More appropriate to be stored in the typings directory, as it is not a source file, but a type definition file for SVGs.
5 lines
68 B
TypeScript
5 lines
68 B
TypeScript
declare module '*.svg' {
|
|
const src: string;
|
|
export default src;
|
|
}
|