@mudssky/jsutils
    Preparing search index...

    Type Alias PartialBy<Obj, Key>

    PartialBy: CopyRecord<
        Partial<Pick<Obj, Extract<keyof Obj, Key>>> & Omit<Obj, Key>,
    >

    执行Record的部分key为可选

    Type Parameters

    • Obj extends Record<string, any>
    • Key extends keyof any