import * as ts from 'typescript'; import { Scope } from '../../scope/scope'; declare type PropertyNode = ts.PropertySignature | ts.PropertyDeclaration; export declare function GetPropertyDescriptor(node: PropertyNode, scope: Scope): ts.Expression; export {};