mirror of
https://github.com/tedkulp/vidgrab
synced 2026-04-16 21:14:04 -04:00
7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
declare module '*.svg' {
|
|
const content: any;
|
|
export const ReactComponent: any;
|
|
export default content;
|
|
}
|