mirror of
https://github.com/tlsnotary/explorer.git
synced 2026-01-09 14:58:09 -05:00
15 lines
236 B
TypeScript
15 lines
236 B
TypeScript
declare module '*.svg' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.png' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.gif' {
|
|
const content: string;
|
|
export default content;
|
|
}
|