/** * Singleton. Used to set global configuration. */ export declare class AppConfig { private constructor(); private static _instance; /** * Gets the current instance of the object. If none exists, it creates a new instance. * * @returns instance of AppConfig * */ static getInstance(): AppConfig; /** * This represents the maximum dice role result to be considered a botch. * * @returns number * */ Botch: number; /** * This represents the number above the difficulty to be considered an extraordinary success. * * @returns number * */ ExtraordinarySuccess: number; } //# sourceMappingURL=AppConfig.d.ts.map