ts-auto-mock
Version:
Typescript transformer to unlock automatic mock creation for interfaces and classes
5 lines (4 loc) • 312 B
TypeScript
import type * as ts from 'typescript';
import { Scope } from '../../scope/scope';
export declare function GetModuleDescriptor(node: ts.NamedDeclaration, scope: Scope): ts.Expression;
export declare function GetPropertiesFromSourceFileOrModuleDeclaration(symbol: ts.Symbol, scope: Scope): ts.PropertySignature[];