mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
9 lines
251 B
TypeScript
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}`;
|
|
}
|