UNPKG

themer

Version:

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

4 lines (3 loc) 242 B
import { OutputFile } from '../template/index.js'; export type OutputFileTransform<T> = (file: OutputFile) => AsyncGenerator<T | OutputFile>; export declare function noopTransform(file: OutputFile): AsyncGenerator<OutputFile, void, unknown>;