ExpressionFunctionDocBlock
Defines how an AdaptableQL Function is described in Expression Editor
TypeScript
export type ExpressionFunctionDocBlock = {
type: 'code';
content: string;
} | {
type: 'paragraph';
content: string;
};Defines how an AdaptableQL Function is described in Expression Editor
export type ExpressionFunctionDocBlock = {
type: 'code';
content: string;
} | {
type: 'paragraph';
content: string;
};