import type { KnownPlugin } from "./KnownPlugin.js"; import type { PluginId } from "./PluginId.js"; import type { ResourceMetadata } from "./ResourceMetadata.js"; import type { ThirdPartyPlugin } from "./ThirdPartyPlugin.js"; export type Plugin = { id: PluginId; metadata: ResourceMetadata; /** * Optional icon to be used on settings. This have to be a valid react icon name.\ * You can find all icons here: https://react-icons.github.io/react-icons/. */ icon: string; } & (KnownPlugin | ThirdPartyPlugin); //# sourceMappingURL=Plugin.d.ts.map