mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-23 23:39:47 +08:00
9 lines
129 B
TypeScript
9 lines
129 B
TypeScript
import mitt from 'mitt';
|
|
|
|
/** dictType: string */
|
|
type Events = {
|
|
rowClick: string;
|
|
};
|
|
|
|
export const emitter = mitt<Events>();
|