import { gracely } from "gracely" import { http } from "cloudly-http" import { Account } from "../../Account" export class History { constructor(private readonly client: http.Client) {} async list(account: string): Promise { return this.client.get(`/account/${account}/history`) } }