UNPKG

@manuth/woltlab-compiler

Version:

A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components

14 lines (13 loc) 282 B
/** * Provides options for the {@link FileDescriptor `FileDescriptor`} class. */ export interface IFileDescriptorOptions { /** * The path to load the file from. */ Source: string; /** * The filename to save the file to. */ FileName?: string; }