st-bundle
Version:
CLI for watching and bundling SpringType projects.
9 lines (8 loc) • 403 B
TypeScript
import * as ts from 'typescript';
import { IStatementReplaceableCollection, IWebWorkerItem } from '../analysis/fastAnalysis';
export interface ITypescriptTransformProps extends ts.TranspileOptions {
input: string;
webWorkers?: Array<IWebWorkerItem>;
replacements?: IStatementReplaceableCollection;
}
export declare function tsTransform(props: ITypescriptTransformProps): ts.TranspileOutput;