mapcomplete/Customizations/Questions/FixedText.ts
Pieter Vander Vennet cce9207a35 Fixed the build
2020-08-22 03:15:42 +02:00

15 lines
422 B
TypeScript

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