h-sphere_sql-seal/src/cellParser/CellFunction.ts
Kacper Kula 0447368f53 wip
2025-04-02 10:40:00 +01:00

8 lines
No EOL
258 B
TypeScript

import { CellParserResult } from "./ModernCellParser";
export interface CellFunction<T = unknown> {
get name(): string;
get sqlFunctionArgumentsCount(): number;
prepare(content: T): CellParserResult;
renderAsString(content: T): string;
}