mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-24 13:52:45 +00:00
c5c04a8d83
## Description: Show structure levels on the structureIconsLayer Add new bitmap font (modified from this font: https://frostyfreeze.itch.io/pixel-bitmap-fonts-png-xml CC0 license)  ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced - [x] I understand that submitting code with bugs that could have been caught through manual testing blocks releases and new features for all contributors ## Please put your Discord username so you can be contacted if a bug or regression is found: Vivacious Box
43 lines
752 B
TypeScript
43 lines
752 B
TypeScript
declare module "*.png" {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
declare module "*.jpg" {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
|
|
declare module "*.webp" {
|
|
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;
|
|
}
|
|
declare module "*.md" {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
declare module "*.txt" {
|
|
const value: string;
|
|
export default value;
|
|
}
|
|
declare module "*.html" {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
declare module "*.xml" {
|
|
const value: string;
|
|
export default value;
|
|
}
|