@playform/pipe
Version:
35 lines (34 loc) • 503 B
TypeScript
import type Buffer from "../Type/Buffer.js";
/**
* @module File
*
* Represents a file specification.
*
*/
export default interface Interface {
/**
* The input file.
*
*/
Input: string;
/**
* The output file.
*
*/
Output: string;
/**
* The size after the action.
*
*/
After: number;
/**
* The size before the action.
*
*/
Before: number;
/**
* The buffer data.
*
*/
Buffer: Buffer;
}