interface Function {
    description: string;
    enabled?: boolean;
    fn: ((p: FunctionParameters) => any);
    name: string;
    parameters: FunctionParameters;
    return_type: any;
}

Properties

description: string
enabled?: boolean
fn: ((p: FunctionParameters) => any)
name: string
parameters: FunctionParameters
return_type: any