Interface PluginExports

interface PluginExports {
    Settings?: ComponentType<{}>;
    start?: (() => Promisable<void>);
    stop?: (() => Promisable<void>);
    [x: string]: unknown;
}

Indexable

  • [x: string]: unknown

Properties

Settings?: ComponentType<{}>
start?: (() => Promisable<void>)
stop?: (() => Promisable<void>)