@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
11 lines (10 loc) • 356 B
TypeScript
import { IInstructionOptions } from "../IInstructionOptions.js";
/**
* Provides options for the {@link FileSystemInstruction `FileSystemInstruction`} class.
*/
export interface IFileSystemInstructionOptions extends Partial<IInstructionOptions> {
/**
* The path to the file-system entry the instruction is bound to.
*/
Source: string;
}