Files
JiboSDK/lib/dts/bt-flow/expressions/FunctionExpression.d.ts

17 lines
368 B
TypeScript
Raw Normal View History

2026-03-22 03:21:45 +02:00
export default function FunctionExpression(objectExpression: any, hasSelf: any): {
"type": string;
"id": any;
"params": any[];
"defaults": any[];
"body": {
"type": string;
"body": {
"type": string;
"argument": any;
}[];
};
"rest": any;
"generator": boolean;
"expression": boolean;
};