Type alias PushOperator<TSchema>

PushOperator<TSchema>: {
    readonly [key in KeysOfAType<TSchema, ReadonlyArray<any>>]?: Flatten<TSchema[key]> | ArrayOperator<Flatten<TSchema[key]>[]>
} & NotAcceptedFields<TSchema, ReadonlyArray<any>> & {
    [key: string]: ArrayOperator<any> | any;
}

Type Parameters

  • TSchema

Type declaration

Generated using TypeDoc