@manuth/generator-wsc-package
Version:
A Generator for WoltLab Suite Core Packages.
23 lines (22 loc) • 535 B
TypeScript
import { Dictionary, Package } from "@manuth/package-json-editor";
/**
* Provides constants for this package.
*/
export declare class Constants {
/**
* The metadata of this package.
*/
private static package;
/**
* The dependencies of this package.
*/
private static dependencies;
/**
* Gets the metadata of this package.
*/
static get Package(): Package;
/**
* Gets the dependencies of this package.
*/
static get Dependencies(): Dictionary<string, string>;
}