node-zoom2
Version:
z39.50 with Node 12+ support
23 lines (17 loc) • 518 B
TypeScript
import { Records } from './records';
export class ResultSet {
/** Sets specified result set property. */
set(key: string, val: string): this;
/** Returns specified result set property. */
get(key: string): string;
size: number;
/** Destroy this result set. */
destroy(): void;
/** Fetch records in this result set. */
getRecords(
index: number,
counts: number,
/** Callback function called after records were fetched. */
cb: (error: Error, records: Records) => void
): void;
}