import { IBaseForm } from '../baseForm' import { paramsInterfaceValidKey } from '../../../script/index' // @ts-ignore export interface TransferInterface extends IBaseForm { options: Function, methods?: Function leftDefaultChecked?: String[], rightDefaultChecked?: String[] } export class TransferConfig implements TransferInterface { model = '' type = 'infoTransfer' label = '' options = () => [] constructor (params: TransferInterface) { paramsInterfaceValidKey(this, params) } }