mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-05-10 18:52:09 +08:00
11 lines
144 B
TypeScript
11 lines
144 B
TypeScript
import { mitt } from '@vben/utils';
|
|
|
|
/**
|
|
* dictType: string
|
|
*/
|
|
type Events = {
|
|
rowClick: string;
|
|
};
|
|
|
|
export const emitter = mitt<Events>();
|