lisk-framework
Version:
Lisk blockchain application platform
14 lines (13 loc) • 431 B
TypeScript
import { APIClient } from '@liskhq/lisk-api-client';
import { BaseCommand } from '../modules';
import { BasePlugin } from '../plugins/base_plugin';
export type CommandClass<T = any> = new (args?: T) => BaseCommand;
export interface Data {
readonly block: string;
}
export interface WaitUntilBlockHeightOptions {
apiClient: APIClient;
height: number;
timeout?: number;
}
export type PluginClass = typeof BasePlugin;