UNPKG

tstosc

Version:

A transpiler that convert TypeScript to SuperCollider's SCLang.

9 lines (6 loc) 427 B
import ts from 'typescript'; import { GeneratorContext } from '../context.cjs'; import '../../../cli/args.cjs'; declare function convertTSClassToSC(c: ts.ClassLikeDeclaration, generator_context?: GeneratorContext): string; declare function convertTSClassToSCWithClassName(c: ts.ClassLikeDeclaration, name: string, generator_context?: GeneratorContext): string; export { convertTSClassToSC, convertTSClassToSCWithClassName };