Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EditorWrapper.provider.js « components « src - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c19ebdc0dbc1d93e86909f9f5cd32e804addd9c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const EDITOR = Symbol('tiptap:editor')
export const SYNC_SERVICE = Symbol('sync:service')

export const useEditorMixin = {
	inject: {
		$editor: { from: EDITOR, default: null },
	},
}
export const useSyncServiceMixin = {
	inject: {
		$syncService: { from: SYNC_SERVICE, default: null },
	},
}