geoview-core
    Preparing search index...

    Type Alias TypePluginStructure

    interface used when creating the actual plugin.

    type TypePluginStructure = {
        add?: () => void;
        api: API;
        configObj: unknown;
        createElement: typeof __type;
        defaultConfig?: () => unknown;
        pluginId: string;
        props: unknown;
        react: typeof React;
        remove?: () => void;
        schema?: () => unknown;
        select?: () => void;
        translate: unknown;
        translations: Record<string, unknown>;
    }
    Index

    Properties

    add?: () => void
    api: API
    configObj: unknown
    createElement: typeof __type
    defaultConfig?: () => unknown
    pluginId: string
    props: unknown
    react: typeof React
    remove?: () => void
    schema?: () => unknown
    select?: () => void
    translate: unknown
    translations: Record<string, unknown>