@odoo/o-spreadsheet
Version:
A spreadsheet component
9 lines (8 loc) • 316 B
TypeScript
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>;