Added manual pump question

This commit is contained in:
Pieter Fiers 2020-07-07 16:39:11 +02:00
parent 75a3a70afa
commit ee2777495b
5 changed files with 44 additions and 4 deletions

View file

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