UNPKG

ts-auto-mock

Version:

Typescript transformer to unlock automatic mock creation for interfaces and classes

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