@farris/command-services-vue
Version:
Render schema to web page with farris ui.
10 lines (8 loc) • 338 B
TypeScript
import { FormNotifyService } from './form-notify.service';
export declare class DataCheckService {
private formNotifyService;
constructor(formNotifyService: FormNotifyService);
checkBeforeView(id: string): true | Promise<never>;
checkBeforeEdit(id: string): true | Promise<never>;
ifSkipCheck(id: string): boolean;
}