mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-21 09:38:01 +02:00
9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
|
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()}`;
|
||
|
}
|