UNPKG

@useorbis/db-sdk

Version:

Orbis' Typescript SDK for building open-data experiences.

14 lines (13 loc) 233 B
export class StatementHistory { #runs = []; constructor() { } get runs() { return this.#runs; } storeResult(run) { this.#runs.push(run); } clearHistory() { this.#runs = []; } }