h-sphere_sql-seal/src/modules/syntaxHighlight/cellParser/CellFunction.ts

8 lines
258 B
TypeScript
Raw Normal View History

import { CellParserResult } from "./ModernCellParser";
export interface CellFunction<T = unknown> {
get name(): string;
get sqlFunctionArgumentsCount(): number;
prepare(content: T): CellParserResult;
2025-04-02 09:40:00 +00:00
renderAsString(content: T): string;
}