mapcomplete/Customizations/Questions/FixedName.ts

13 lines
304 B
TypeScript
Raw Normal View History

2020-07-07 14:39:11 +00:00
import { TagRenderingOptions } from "../TagRendering";
export default class FixedName extends TagRenderingOptions {
constructor(category: string) {
super({
mappings: [
{
k: null, txt: category
}
]
})
}
}