Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
at main 9 lines 276 B view raw
1import type { ApolloError } from "@apollo/client"; 2import type { ServerParseError } from "@apollo/client/link/http"; 3import type { ServerError } from "@apollo/client/link/utils"; 4 5export type ApolloClientError = 6 | ApolloError 7 | ServerError 8 | ServerParseError 9 | Error;