UNPKG

@atomiqlabs/sdk-lib

Version:

Basic SDK functionality library for atomiq

9 lines (8 loc) 238 B
export interface IParamReader { /** * Returns a promise when the specific property with the name is read from the stream * * @param name Name of the property */ getParam<T>(name: string): Promise<T>; }