UNPKG

pages-cook

Version:

web-portals

19 lines (15 loc) 341 B
'use strict' 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 }