import { REST } from '../api/ApiService'; import type { IManifest } from '../domain'; export class ManifestReader { public static getManifest(account: string, location: string, name: string): PromiseLike { return REST('/manifests').path(account, location, name).get(); } }