UNPKG

@ecip/auth

Version:
26 lines (25 loc) 980 B
import { OnInit } from '@angular/core'; import { NzMessageService } from 'ng-zorro-antd'; import { SFComponent, SFSchema } from '@delon/form'; import { DataSourceService, RuleService, DictService } from "@ecip/service"; import { ActivatedRoute, Router } from "@angular/router"; export declare class AuthRuleEditComponent implements OnInit { ruleService: RuleService; private messageService; private dataSourceService; dictService: DictService; private activeRoute; private router; sf: SFComponent; record: any; isNew: boolean; title: string; schema: SFSchema; constructor(ruleService: RuleService, messageService: NzMessageService, dataSourceService: DataSourceService, dictService: DictService, activeRoute: ActivatedRoute, router: Router); ngOnInit(): void; submit(value: any): void; create(value: any): void; update(value: any): void; close(): void; testSync(value: any): void; }