import { PSAjaxControlParamImpl } from '../psajax-control-param-impl'; import { IPSCustomControlParam } from './ipscustom-control-param'; export class PSCustomControlParamImpl extends PSAjaxControlParamImpl implements IPSCustomControlParam { get cls(): string { return 'PSCustomControlParamImpl'; } instanceof(cls: string): boolean { if (cls == 'control.custom.IPSCustomControlParam') return true; return super.instanceof(cls); } }