mirror of
https://github.com/strapi/strapi.git
synced 2025-07-13 03:51:54 +00:00
11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
![]() |
/* eslint-disable import/no-default-export */
|
||
|
declare module '*.png' {
|
||
|
const value: any;
|
||
|
export default value;
|
||
|
}
|
||
|
|
||
|
declare module '*.svg' {
|
||
|
const value: any;
|
||
|
export default value;
|
||
|
}
|