gsheets-db.js - v1.0.3
    Preparing search index...

    Interface DBOptions

    Configuration options for initializing the Google Sheets database.

    interface DBOptions {
        credentials: ConnectionCredentials;
        schema: string[];
        sheetName: string;
        spreadsheetId: string;
    }
    Index

    Properties

    Authentication credentials.

    schema: string[]

    An array of strings representing the column headers.

    sheetName: string

    The name of the specific sheet to use. Will create a new one if not exist..

    spreadsheetId: string

    The ID of the Google Spreadsheet (can be found in the URL).