import * as ts from 'typescript'; import { Scope } from '../../scope/scope'; declare type FunctionAssignment = ts.ArrowFunction | ts.FunctionExpression; export declare function GetFunctionAssignmentDescriptor(node: FunctionAssignment, scope: Scope): ts.Expression; export {};