import { OutputFile } from '../template/index.js'; export type OutputFileTransform = ( file: OutputFile, ) => AsyncGenerator; export async function* noopTransform(file: OutputFile) { yield file; }