1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-03-06 15:36:49 +02:00

9 lines
224 B
TypeScript
Raw Normal View History

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