1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-04-05 04:01:07 +08:00

15 lines
237 B
TypeScript

declare module '*.svg' {
const content: string;
export default content;
}
declare module '*.avif' {
const content: string;
export default content;
}
declare module '*.png' {
const content: string;
export default content;
}