postgrejs
Version:
Professional PostgreSQL client NodeJS
16 lines (15 loc) • 349 B
TypeScript
import type { CommandResult } from './command-result.js';
export interface ScriptResult {
/**
* Array of command result for each sql command in the script
*/
results: CommandResult[];
/**
* Command count in the script
*/
totalCommands: number;
/**
* Total execution time
*/
totalTime: number;
}