UNPKG

olympus-protocol-connector

Version:

Module made by Olympus Labs for easier access to the Olympus protocol through Javascript/Typescript

15 lines (14 loc) 470 B
import { Service } from '../../Service'; export declare class ComponentService extends Service { /** * @deprecated Use method create * @param address address */ static get(address: string): Promise<ComponentService>; static create(address: string): Promise<ComponentService>; name(): Promise<string>; version(): Promise<string>; description(): Promise<string>; owner(): Promise<string>; componentList(): Promise<string>; }