mapcomplete/Customizations/Questions/FixedText.ts

14 lines
376 B
TypeScript
Raw Normal View History

2020-07-31 15:38:03 +00:00
import {TagRenderingOptions} from "../TagRenderingOptions";
2020-08-22 01:15:42 +00:00
import Translation from "../../UI/i18n/Translation";
2020-07-07 14:39:11 +00:00
export default class FixedText extends TagRenderingOptions {
2020-08-22 01:15:42 +00:00
constructor(category: string | Translation) {
2020-07-07 14:39:11 +00:00
super({
mappings: [
{
k: null, txt: category
}
]
})
}
}