UNPKG

@odoo/o-spreadsheet

Version:
9 lines (8 loc) 316 B
import { Position } from "../types/misc"; export declare function expandXc(xc: string): Iterable<Position>; /** * Helper to expand a range string like A1:B3 into all cell references in the range * @param start * @param end */ export declare function expandRange(start: string, end: string): Generator<Position>;