mapcomplete/Customizations/Questions/FixedName.ts
2020-07-07 16:39:11 +02:00

13 lines
304 B
TypeScript

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