gsr
    Preparing search index...

    Type Alias PartialExceptType<T>Internal

    PartialExceptType: Pick<T, "type"> & Omit<Partial<T>, "type">

    Internal utility type to create a partial type from a result type It will make all properties optional except the 'type' property

    Type Parameters

    • T extends { type: string }