UNPKG

what-to-play

Version:

Score aggregator for lists of games

11 lines (10 loc) 368 B
/** * The code assumes common spreadsheet syntax. */ export declare function count(expressions: string[]): string; /** * @param col 1-indexed */ export declare function getCellInCol(col: number): string; export declare function insteadOfEmpty(expr: string, instead: string): string; export declare function toHyperlink(url: string, text: string | number): string;