@pengzhanbo/utils - v3.5.0
    Preparing search index...

    Type Alias Operation<K, V>

    Operation:
        | { predicate: (key: K, value: V) => boolean; type: "filter" }
        | { transform: (key: K, value: V) => [PropertyKey, unknown]; type: "map" }

    Operation type for lazy evaluation (internal)

    惰性计算的操作类型(内部使用)

    Type Parameters

    • K extends string
    • V