mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-17 04:22:28 +00:00
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
export function getMockEvent(target, options) {
|
|
return {
|
|
target,
|
|
preventDefault() {},
|
|
stopPropagation() {},
|
|
...options,
|
|
};
|
|
} |