@kgdata/static-resource
Version:
static-resource
16 lines (15 loc) • 521 B
TypeScript
declare namespace PRO_STATIC_RESOURCE {
interface ProStaticResourceProps {
trigger?: React.ReactNode;
permissionVisible?: boolean;
modalTitle?: string;
visible: boolean;
stateStatus: 'update' | 'read' | 'edit';
onChangeVisible: (bool: boolean) => void;
contentProps: STACI_RESOURCE_MANAGE.staticResourceProps;
onRollBack?: (type: string) => void;
onReset?: (type: string) => void;
onFinish?: (config: any) => void;
onChangeStatus: (action: any) => void;
}
}