@kgdata/static-resource
Version:
static-resource
23 lines (22 loc) • 588 B
TypeScript
declare module '*.less';
declare namespace STACI_RESOURCE_MANAGE {
type staticResourceProps = {
applicationName: string;
productType: string;
isShowLogo: boolean;
logo?: string;
icon?: string;
version: string;
copyright: string;
meta: string;
hiddenKeys: string[];
notEditableKeys: string[];
maxLength: number;
stateStatus: 'update' | 'read' | 'edit';
lastModifyTime: string;
onRollBack: (type) => void;
onFinish: (data) => void;
onReset: (type) => void;
onChangeStatus: (action) => void;
};
}