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

Cell

import type { Cell } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

An occurrence of sensitive data detected in a Microsoft Excel workbook, comma-separated value (CSV) file, or tab-separated value (TSV) file.

interface Cell {
CellReference?: string | null;
Column?: number | null;
ColumnName?: string | null;
Row?: number | null;
}

§Properties

§
CellReference?: string | null
[src]

For a Microsoft Excel workbook, provides the location of the cell, as an absolute cell reference, that contains the data. For example, Sheet2!C5 for cell C5 on Sheet2.

§
Column?: number | null
[src]

The column number of the column that contains the data. For a Microsoft Excel workbook, the column number corresponds to the alphabetical column identifiers. For example, a value of 1 for Column corresponds to the A column in the workbook.

§
ColumnName?: string | null
[src]

The name of the column that contains the data.

§
Row?: number | null
[src]

The row number of the row that contains the data.