import { Exception } from "../../Exception"; export default class Response { result: T; error: Exception; constructor(response: { result: string; error: Exception; }, converter?: (result: any) => T); }