aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/json-rpc-error/index.d.ts
blob: dfaf921675084e5abe27213dd04872bc1511106d (plain) (blame)
1
2
3
4
5
6
7
8
declare module 'json-rpc-error' {
    export class InternalError extends Error {
        constructor(err: Error | string);
    }
    export class MethodNotFound extends Error {
        constructor();
    }
}