mirror of
https://github.com/penpot/penpot.git
synced 2026-02-20 08:10:51 -05: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;
|
|
}
|
|
}
|