burst-whale-watch
Version:
An account watcher for Burstcoin
11 lines (10 loc) • 337 B
TypeScript
import { Store } from "../../typings/stappo/store";
export declare abstract class Collector {
protected store: Store;
protected constructor(store: Store);
start(): void;
protected abstract onStart(): any;
protected abstract onStop(): any;
stop(): void;
protected update(fieldName: string, data: any): void;
}