rete-kit
Version:
Rete.js Kit ==== [](https://stand-with-ukraine.pp.ua) [](https://disco
12 lines (11 loc) • 496 B
TypeScript
import { ContentTransformer } from './transformers';
import { F, InstructionStrategy } from './types';
/**
* Strategy for merging all instructions into a single file
*/
export declare class SingleFileStrategy implements InstructionStrategy {
private readonly outputFileName;
private readonly contentTransformerFactory?;
constructor(outputFileName: string, contentTransformerFactory?: ((instruction: F) => ContentTransformer[]) | undefined);
transform(instructions: F[]): F[];
}