@flowscripter/pluggable-io-framework-api
    Preparing search index...

    Interface IOProviderFactory<TConfig, K>

    Returned (as unknown, cast at the extension point boundary) from ExtensionFactory.create() in a dynamic-plugin-framework ExtensionDescriptor.

    interface IOProviderFactory<TConfig = unknown, K extends ChunkKind = ChunkKind> {
        configSchema: ZodType<TConfig>;
        propertySchema: ZodType<Record<string, unknown>>;
        createProvider(config: TConfig): Promise<IOProvider<K>>;
    }

    Type Parameters

    Index
    configSchema: ZodType<TConfig>
    propertySchema: ZodType<Record<string, unknown>>