@wxn0brp/db-core
    Preparing search index...

    Interface FindOpts<T>

    interface FindOpts<T = any> {
        exclude?: KeysMatching<T, any>[];
        select?: KeysMatching<T, any>[];
        transform?: Function;
    }

    Type Parameters

    • T = any
    Index

    Properties

    exclude?: KeysMatching<T, any>[]
    select?: KeysMatching<T, any>[]
    transform?: Function