feat: move filters/tags to instances, fixes #188

This commit is contained in:
harttle
2020-03-03 00:02:29 +08:00
parent f6762078e0
commit df8a919f71
47 changed files with 240 additions and 221 deletions
+6
View File
@@ -0,0 +1,6 @@
export abstract class TemplateImpl<T> {
public token: T;
public constructor (token: T) {
this.token = token
}
}