mapcomplete/Customizations/Questions/FixedText.ts

14 lines
367 B
TypeScript
Raw Normal View History

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