@flighter/a1-notation
Version:
Work with A1 notation like "A1" or "A1:B2"
16 lines (15 loc) • 340 B
TypeScript
/**
* @fileOverview Constructor object options
*/
type options = {
colStart?: string | number;
rowStart?: string | number;
colEnd?: string | number;
rowEnd?: string | number;
a1Start?: string;
a1End?: string;
nCols?: number;
nRows?: number;
converter?: 1 | 2;
};
export default options;