mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
8 lines
136 B
TypeScript
8 lines
136 B
TypeScript
export function getMockRenderer() {
|
|
return {
|
|
isSimulatorRenderer: true,
|
|
run() {
|
|
console.log('renderer run');
|
|
}
|
|
}
|
|
} |