mirror of
https://github.com/penpot/penpot.git
synced 2026-03-21 09:53:29 +00:00
10 lines
305 B
TypeScript
10 lines
305 B
TypeScript
import type { Manifest } from './lib/models/manifest.model';
|
|
|
|
export declare global {
|
|
declare namespace globalThis {
|
|
function ɵloadPlugin(cofig: Manifest): Promise<void>;
|
|
function ɵloadPluginByUrl(url: string): Promise<void>;
|
|
function ɵunloadPlugin(id: Manifest['pluginId']): void;
|
|
}
|
|
}
|