edge-sync-client
Version:
Library for accessing the Edge data-sync system
16 lines (15 loc) • 395 B
TypeScript
/**
* Could not reach the server at all.
*/
export declare class NetworkError extends Error {
name: string;
constructor(message?: string);
}
export declare class ConflictError extends Error {
name: string;
readonly repoId: string;
constructor(opts: {
repoId: string;
});
}
export declare const asMaybeConflictError: (raw: unknown) => ConflictError | undefined;