UNPKG

omniscript-cli

Version:

OmniScript Format (OSF) CLI tools - Command-line interface for parsing, validating, and converting OSF documents

21 lines 526 B
export interface FormulaDefinition { cell: [number, number]; expr: string; } export type CellValue = string | number | boolean; export type SpreadsheetData = Record<string, CellValue>; export interface StyledText { text: string; bold?: boolean; italic?: boolean; underline?: boolean; strike?: boolean; } export interface CliCommand { name: string; description: string; usage: string; args: string[]; } export declare const commands: CliCommand[]; //# sourceMappingURL=types.d.ts.map