/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ThemeColorPair } from './ThemeColorPair'; export interface SpreadsheetTheme { /** * Name of the primary font family. */ primaryFontFamily: string; /** * The spreadsheet theme color pairs. To update you must provide all theme color pairs. */ themeColors: ThemeColorPair[]; } //# sourceMappingURL=SpreadsheetTheme.d.ts.map