nexus-agents - v2.80.0
    Preparing search index...

    Interface ISQLiteStatement<T>

    Minimal interface for better-sqlite3 Statement. Compatible with the better-sqlite3 package API.

    interface ISQLiteStatement<T = unknown> {
        run(...params: unknown[]): ISQLiteRunResult;
        get(...params: unknown[]): T | undefined;
        all(...params: unknown[]): T[];
    }

    Type Parameters

    • T = unknown
    Index

    Methods

    Methods