UNPKG

239 BTypeScriptView Raw
1import { ApolloError } from 'apollo-client';
2export interface ErrorDetail {
3 /** Contains an array of graphQL error codes */
4 codes: string[];
5 data: any;
6}
7export default function getErrorDetail(error: ApolloError): ErrorDetail;