8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
import { createEventBus } from "retrobus"
|
|
|
|
interface EventBusParams {
|
|
fileSha: string
|
|
}
|
|
|
|
export const backlinkEventBus = createEventBus<EventBusParams>()
|