mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-07-03 21:50:45 +00:00
22 lines
396 B
TypeScript
22 lines
396 B
TypeScript
declare module '*.png' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
declare module '*.jpg' {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
|
|
declare module '*.jpeg' {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
declare module '*.svg' {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
declare module '*.bin' {
|
|
const value: string;
|
|
export default value;
|
|
}
|