Type
OutputOptions
The options for creating an Output object.
ts
type OutputOptions<F extends OutputFormat = OutputFormat, T extends Target = Target> = {
format: F;
target: T;
};
See OutputFormat
and Target
.
Used by
Properties
format
ts
format: F;
The format of the output file.
target
ts
target: T;
The target to which the file will be written.