@plugjs/expect5
Version:
Unit Testing for the PlugJS Build System ========================================
9 lines (8 loc) • 388 B
TypeScript
import type { Files } from '@plugjs/plug/files';
import type { Context, PipeParameters, Plug } from '@plugjs/plug/pipe';
/** Writes some info about the current {@link Files} being passed around. */
export declare class Test implements Plug<void> {
private readonly _options;
constructor(...args: PipeParameters<'test'>);
pipe(files: Files, context: Context): Promise<void>;
}