Type Alias SheetTemplate

type SheetTemplate = {
    appId?: string;
    heightPx?: number;
    isPrivate?: boolean;
    jsOpts?: unknown;
    jsOptsById?: Record<string, unknown>;
    patchesById?: Record<string, unknown[]>;
    sheetId?: string;
    sheetName?: string;
    widthPx?: number;
}
Index

Properties

appId?: string

ID of app

heightPx?: number
isPrivate?: boolean

optional value to indicate that this sheet is private (used in multi-sheet sharing)

jsOpts?: unknown
jsOptsById?: Record<string, unknown>
patchesById?: Record<string, unknown[]>
sheetId?: string
sheetName?: string

an optional name for the sheet (used in multi-sheet sharing)

widthPx?: number