Type alias BatchPlainODataResponse<E>

BatchPlainODataResponse<E>: PlainODataResponse & {
    d?: {
        __count?: string;
        results?: E[];
    } & E;
}

Type Parameters

  • E = any

Type declaration

  • Optional d?: {
        __count?: string;
        results?: E[];
    } & E