interface InitResponse {
    error?: {
        code: string | number;
        message: string;
    };
    result: boolean;
}

Properties

Properties

error?: {
    code: string | number;
    message: string;
}
result: boolean