mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
8 lines
No EOL
258 B
TypeScript
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;
|
|
} |