iportal
Version:
web-portal
19 lines (15 loc) • 345 B
text/typescript
import { Application } from '../Application'
import { TransformSwitch } from './switch'
import { TransformOptions } from '../types'
class Transform extends TransformSwitch {
constructor (app: Application) {
super(app)
}
public setup (options: TransformOptions) {
this.options = options
}
}
export {
Transform
}