/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { GridRange } from './GridRange'; export interface NamedRange { /** * The ID of the named range. */ namedRangeId: string; /** * The name of the named range. */ name: string; /** * The range this represents. */ range: GridRange; } //# sourceMappingURL=NamedRange.d.ts.map