@duplicis/types - v1.0.0
    Preparing search index...

    Interface Plugin

    Plugin.

    interface Plugin {
        manifest: PackageJSON;
        name: string;
        config<Type extends keyof Map>(
            key: string,
            type: Type,
            options?: Map[Type],
        ): PluginBinding<Type>;
        onExit(): Awaitable<void>;
        onLoad(): Awaitable<void>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    manifest: PackageJSON
    name: string

    Methods