UNPKG

themer

Version:

Customizable theme creator for editors, terminals, wallpaper, and more.

10 lines (7 loc) 222 B
import { OutputFile } from '../template/index.js'; export type OutputFileTransform<T> = ( file: OutputFile, ) => AsyncGenerator<T | OutputFile>; export async function* noopTransform(file: OutputFile) { yield file; }