UNPKG

@manuth/generator-wsc-package

Version:

A Generator for WoltLab Suite Core Packages.

11 lines (10 loc) 302 B
import { IWoltLabComponentOptions } from "./IWoltLabComponentOptions.js"; /** * Represents options for a component which is stored locally. */ export interface ILocalComponentOptions extends IWoltLabComponentOptions { /** * The path to load the component from. */ Source: string; }