4 lines
165 B
TypeScript
4 lines
165 B
TypeScript
export interface ErrorWithBatchIndex {
|
|
batchRequestIdx?: number;
|
|
}
|
|
export declare function hasBatchIndex(value: object): value is Required<ErrorWithBatchIndex>;
|