mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
7 lines
217 B
TypeScript
7 lines
217 B
TypeScript
|
|
import { CellParserResult } from "./ModernCellParser";
|
||
|
|
|
||
|
|
export interface CellFunction<T = unknown> {
|
||
|
|
get name(): string;
|
||
|
|
get sqlFunctionArgumentsCount(): number;
|
||
|
|
prepare(content: T): CellParserResult;
|
||
|
|
}
|