UNPKG

@helium/http

Version:

HTTP library for interacting with the Helium blockchain API

18 lines 390 B
import DataModel from './DataModel'; export interface RoleJsonObject { type: string; time: number; role: string; height: number; hash: string; } export default class Role extends DataModel { type: string; time: number; role: string; height: number; hash: string; constructor(data: Role); get data(): Role; } //# sourceMappingURL=Role.d.ts.map