UNPKG

@manuth/generator-wsc-package

Version:

A Generator for WoltLab Suite Core Packages.

13 lines (12 loc) 589 B
import { IFileUploadComponentOptions } from "../../../Settings/IFileUploadComponentOptions.js"; import { IWoltLabComponentOptionCollection } from "../../../Settings/IWoltLabComponentOptionCollection.js"; import { PackageComponentType } from "./PackageComponentType.js"; /** * Provides component-options for a WoltLab-package. */ export interface IPackageComponentOptionCollection extends IWoltLabComponentOptionCollection { /** * Provides options for the {@link TemplateComponent `TemplateComponent`}. */ [PackageComponentType.Template]: IFileUploadComponentOptions; }