UNPKG

ts-migrate-server

Version:

A package that contains the main migration runner and spawns a TSServer process

11 lines (10 loc) 312 B
import TSServer from './tsserver/TSServer'; /** * Create TSServer with default configuration. */ export default function forkTSServer(tssPath?: string): TSServer; /** * Create TSServer without logging. * Useful for testing. */ export declare function forkTSServerWithNoopLogger(tssPath?: string): TSServer;