Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

InsertTableRowRequest

import type { InsertTableRowRequest } from "https://googleapis.deno.dev/v1/docs:v1.ts";

Inserts an empty row into a table.

interface InsertTableRowRequest {
insertBelow?: boolean;
tableCellLocation?: TableCellLocation;
}

§Properties

§
insertBelow?: boolean
[src]

Whether to insert new row below the reference cell location. - True: insert below the cell. - False: insert above the cell.

§
tableCellLocation?: TableCellLocation
[src]

The reference table cell location from which rows will be inserted. A new row will be inserted above (or below) the row where the reference cell is. If the reference cell is a merged cell, a new row will be inserted above (or below) the merged cell.