AskSQL API Reference (core v0.10.0)
    Preparing search index...

    Interface HistoryStore

    interface HistoryStore {
        add(entry: HistoryEntry): Promise<void>;
        list(
            connectionId: string,
            opts?: { limit?: number; offset?: number; userId?: string },
        ): Promise<HistoryPage>;
    }

    Implemented by

    Index
    • Parameters

      • connectionId: string
      • Optionalopts: { limit?: number; offset?: number; userId?: string }

      Returns Promise<HistoryPage>