display links to the stacked note

This commit is contained in:
Julien Calixte
2021-06-06 10:47:36 +02:00
parent 4f13c18573
commit c6dec8769f
6 changed files with 66 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
import { createEventBus } from 'retrobus'
interface EventBusParams {
fileSha: string
}
export const backlinkEventBus = createEventBus<EventBusParams>()

View File

@@ -7,4 +7,4 @@ interface EventBusParams {
currentNoteSHA?: string
}
export const noteEventBus = createEventBus<EventBusParams>('note')
export const noteEventBus = createEventBus<EventBusParams>()