UNPKG

woltlab-compiler

Version:

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

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