@jsfkit/types
    Preparing search index...

    Type Alias PivotCacheWorksheetSourceName

    A named source (defined name or table), optionally scoped to a sheet.

    type PivotCacheWorksheetSourceName = {
        name: string;
        sheet?: string;
        type: "name";
    }
    Index

    Properties

    Properties

    name: string

    A defined name or table name that identifies the source data.

    sheet?: string

    The name of the sheet, when name is a sheet-scoped defined name.

    type: "name"

    Type discriminator for a worksheet name source.