refactor: pipeline edit view

This commit is contained in:
xiaojunnuo
2022-10-27 09:26:32 +08:00
parent e1466737e3
commit 25d5a99b3d
6 changed files with 11 additions and 4 deletions
+2
View File
@@ -1,5 +1,6 @@
import { Registrable } from "../registry";
import { FormItemProps } from "@fast-crud/fast-crud";
import { accessRegistry } from "./registry";
export type AccessDefine = Registrable & {
input: {
@@ -9,5 +10,6 @@ export type AccessDefine = Registrable & {
export function IsAccess(define: AccessDefine) {
return function (target: any) {
target.prototype.define = define;
accessRegistry.install(target);
};
}