import { IBaseForm } from '../baseForm' import { paramsInterfaceValidKey } from '../../../script/index' // export type VueCronInterface = IBaseForm export interface VueCronInterface extends IBaseForm { placement?: String teleported?: boolean } export class VueCronConfig implements VueCronInterface { type = 'infoVueCron' label = '' model = '' placement = 'auto' teleported = true placeholder = (): string => 'input' disabled = (): false => false methods = (): void => {} constructor (params: VueCronInterface) { paramsInterfaceValidKey(this, params) } }