mapcomplete/Customizations/Questions/FixedText.ts
Pieter Vander Vennet 79f8940898 Fix build
2020-07-31 17:38:03 +02:00

14 lines
367 B
TypeScript

import {UIElement} from "../../UI/UIElement";
import {TagRenderingOptions} from "../TagRenderingOptions";
export default class FixedText extends TagRenderingOptions {
constructor(category: string | UIElement) {
super({
mappings: [
{
k: null, txt: category
}
]
})
}
}