ExpressionFunctionDocBlock

Defines how an AdaptableQL Function is described in Expression Editor

TypeScript
export type ExpressionFunctionDocBlock = {
    type: 'code';
    content: string;
} | {
    type: 'paragraph';
    content: string;
};