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