9 lines
176 B
TypeScript
9 lines
176 B
TypeScript
import mitt from 'mitt';
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface ComponentCustomProperties {
|
|
$emitter: Emitter;
|
|
}
|
|
}
|
|
|
|
export { } // Important! See note.
|