20 lines
314 B
TypeScript

import { designer } from '@ali/lowcode-engine';
const { project } = designer;
Object.assign(project, {
getSchema(): any {
return this.schema || {};
},
setSchema(schema: any) {
this.schema = schema;
},
setConfig(config: any) {
this.set('config', config);
},
});
export default project;