UNPKG

@odoo/o-spreadsheet

Version:
15 lines (14 loc) 357 B
import { Locale } from "../types/locale"; /** * Return the cycled reference if any (A1 -> $A$1 -> A$1 -> $A1 -> A1) */ export declare function cycleFixedReference(selection: { start: number; end: number; }, content: string, locale: Locale): { content: string; selection: { start: number; end: number; }; } | undefined;