1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/lib/services/plugins/utils/createViewHandle.ts
2020-11-13 17:09:28 +00:00

9 lines
251 B
TypeScript

import Plugin from '../Plugin';
export type ViewHandle = string;
export default function createViewHandle(plugin: Plugin, id: string): ViewHandle {
if (!id) throw new Error('A view ID must be provided');
return `plugin-view-${plugin.id}-${id}`;
}