Interface JSONRPCSuccesfulResponse
interface JSONRPCSuccesfulResponse {
debug?: {
consoleLog: {
codeContextId?: string;
data: string;
location?: { col: number; filename: string; func: string; line: number };
method: string;
when: string;
}[];
};
error: null;
id: RequestID;
result: unknown;
}
debug?: {
consoleLog: {
codeContextId?: string;
data: string;
location?: { col: number; filename: string; func: string; line: number };
method: string;
when: string;
}[];
};
error: null;
id: RequestID;
result: unknown;
}
Hierarchy (View Summary)
- JSONRPCBaseResponse
- JSONRPCSuccesfulResponse