UNPKG

woltlab-compiler

Version:

A compiler for WoltLab-Package Archives and WoltLab-Package Components

11 lines (10 loc) 333 B
import { IInstructionOptions } from "../IInstructionOptions"; /** * Provides options for the `FileSystemInstruction` class. */ export interface IFileSystemInstructionOptions extends Partial<IInstructionOptions> { /** * The path to the file-system entry the instruction is bound to. */ Source: string; }