@mikuroxina/mini-fn
    Preparing search index...

    Type Alias EtherT<D, M, T>

    EtherT is a function which needs dependencies D and returns M<T>.

    type EtherT<D, M, T> = {
        depSymbols: D;
        handler: (resolved: EtherDeps<D>) => Get1<M, T>;
        selfSymbol: EtherSymbol<T>;
    }

    Type Parameters

    • D
    • M
    • T
    Index

    Properties

    depSymbols: D
    handler: (resolved: EtherDeps<D>) => Get1<M, T>
    selfSymbol: EtherSymbol<T>