1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/lib/services/plugins/utils/createViewHandle.ts

9 lines
251 B
TypeScript
Raw Normal View History

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}`;
}