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

9 lines
231 B
TypeScript

import uuid from '../../../uuid';
import Plugin from '../Plugin';
export type ViewHandle = string;
export default function createViewHandle(plugin: Plugin): ViewHandle {
return `plugin-view-${plugin.id}-${uuid.createNano()}`;
}