st-bundle
Version:
CLI for watching and bundling SpringType projects.
12 lines (11 loc) • 495 B
TypeScript
import { IBundleWriteResponse } from '../bundle/Bundle';
import { Context } from '../core/Context';
import { Module } from '../core/Module';
export interface IFasterThanLightProps {
ctx: Context;
bundleWriters: Array<IBundleWriteResponse>;
filePath: string;
}
export declare function generateFTLJavaScript(modules: Array<Module>): string;
export declare function fasterThanLight(props: IFasterThanLightProps): Promise<Boolean>;
export declare function attachFTL(ctx: Context): void;