@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
122 lines • 10.3 kB
JavaScript
/// <reference lib="DOM" />
import { Constants } from "./Constants.js";
export { BidirectionalCollection } from "./Collections/BidirectionalCollection.js";
export { Constants } from "./Constants.js";
export { Compiler } from "./Compilation/Compiler.js";
export { EventListenerFileCompiler } from "./Compilation/Events/EventListenerFileCompiler.js";
export { ListenerFileCompiler } from "./Compilation/Events/ListenerFileCompiler.js";
export { TemplateListenerFileCompiler } from "./Compilation/Events/TemplateListenerFileCompiler.js";
export { LocalizationFileCompiler } from "./Compilation/Globalization/LocalizationFileCompiler.js";
export { LocalizationSetCompiler } from "./Compilation/Globalization/LocalizationSetCompiler.js";
export { ImportFileCompiler } from "./Compilation/ImportFileCompiler.js";
export { NamedObjectDeletionFileCompiler } from "./Compilation/NamedObjectDeletionFileCompiler.js";
export { ObjectDeletionFileCompiler } from "./Compilation/ObjectDeletionFileCompiler.js";
export { ACPOptionFileCompiler } from "./Compilation/Options/ACPOptionFileCompiler.js";
export { GroupOptionFileCompiler } from "./Compilation/Options/GroupOptionFileCompiler.js";
export { OptionFileCompiler } from "./Compilation/Options/OptionFileCompiler.js";
export { UserOptionFileCompiler } from "./Compilation/Options/UserOptionFileCompiler.js";
export { ACPOptionInstructionCompiler } from "./Compilation/PackageSystem/Instructions/ACPOptionInstructionCompiler.js";
export { BBCodeInstructionCompiler } from "./Compilation/PackageSystem/Instructions/BBCodeInstructionCompiler.js";
export { CronJobInstructionCompiler } from "./Compilation/PackageSystem/Instructions/CronJobInstructionCompiler.js";
export { EmojiInstructionCompiler } from "./Compilation/PackageSystem/Instructions/EmojiInstructionCompiler.js";
export { EventListenerInstructionCompiler } from "./Compilation/PackageSystem/Instructions/EventListenerInstructionCompiler.js";
export { FileInstructionCompiler } from "./Compilation/PackageSystem/Instructions/FileInstructionCompiler.js";
export { FileSystemInstructionCompiler } from "./Compilation/PackageSystem/Instructions/FileSystemInstructionCompiler.js";
export { GroupOptionInstructionCompiler } from "./Compilation/PackageSystem/Instructions/GroupOptionInstructionCompiler.js";
export { InstructionCompiler } from "./Compilation/PackageSystem/Instructions/InstructionCompiler.js";
export { InstructionFileCompiler } from "./Compilation/PackageSystem/Instructions/InstructionFileCompiler.js";
export { LocalizationInstructionCompiler } from "./Compilation/PackageSystem/Instructions/LocalizationInstructionCompiler.js";
export { LocalizationProviderCompiler } from "./Compilation/PackageSystem/Instructions/LocalizationProviderCompiler.js";
export { OptionInstructionCompiler } from "./Compilation/PackageSystem/Instructions/OptionInstructionCompiler.js";
export { PHPInstructionCompiler } from "./Compilation/PackageSystem/Instructions/PHPInstructionCompiler.js";
export { SelfContainedPHPInstructionCompiler } from "./Compilation/PackageSystem/Instructions/SelfContainedPHPInstructionCompiler.js";
export { TemplateListenerInstructionCompiler } from "./Compilation/PackageSystem/Instructions/TemplateListenerInstructionCompiler.js";
export { ThemeInstructionCompiler } from "./Compilation/PackageSystem/Instructions/ThemeInstructionCompiler.js";
export { UserOptionInstructionCompiler } from "./Compilation/PackageSystem/Instructions/UserOptionInstructionCompiler.js";
export { InstructionSetCompiler } from "./Compilation/PackageSystem/InstructionSetCompiler.js";
export { PackageCompiler } from "./Compilation/PackageSystem/PackageCompiler.js";
export { PackageFileCompiler } from "./Compilation/PackageSystem/PackageFileCompiler.js";
export { BBCodeFileCompiler } from "./Compilation/Presentation/BBCodeFileCompiler.js";
export { EmojiFileCompiler } from "./Compilation/Presentation/EmojiFileCompiler.js";
export { ThemeCompiler } from "./Compilation/Presentation/ThemeCompiler.js";
export { ThemeFileCompiler } from "./Compilation/Presentation/ThemeFileCompiler.js";
export { ThemeVariableCompiler } from "./Compilation/Presentation/ThemeVariableCompiler.js";
export { CronJobFileCompiler } from "./Compilation/Tasks/CronJobFileCompiler.js";
export { WoltLabEJSFileCompiler } from "./Compilation/WoltLabEJSFileCompiler.js";
export { WoltLabXMLCompiler } from "./Compilation/WoltLabXMLCompiler.js";
export { XMLFileCompiler } from "./Compilation/XMLFileCompiler.js";
export { BBCode } from "./Customization/BBCodes/BBCode.js";
export { BBCodeAttribute } from "./Customization/BBCodes/BBCodeAttribute.js";
export { Emoji } from "./Customization/Presentation/Emoji.js";
export { TemplateListener } from "./Customization/Presentation/TemplateListener.js";
export { ImageDirectoryDescriptor } from "./Customization/Presentation/Themes/ImageDirectoryDescriptor.js";
export { SassVariableParser } from "./Customization/Presentation/Themes/SassVariableParser.js";
export { Theme } from "./Customization/Presentation/Themes/Theme.js";
export { ThemeLoader } from "./Customization/Presentation/Themes/ThemeLoader.js";
export { ThemeVariables } from "./Customization/Presentation/Themes/ThemeVariables.js";
export { EventListener } from "./Events/EventListener.js";
export { Listener } from "./Events/Listener.js";
export { ListenerEnvironment } from "./Events/ListenerEnvironment.js";
export { Localization } from "./Globalization/Localization.js";
export { LocalizationItem } from "./Globalization/LocalizationItem.js";
export { LocalizationNode } from "./Globalization/LocalizationNode.js";
export { Node } from "./NodeSystem/Node.js";
export { NodeCollection } from "./NodeSystem/NodeCollection.js";
export { NodeItem } from "./NodeSystem/NodeItem.js";
export { Category } from "./Options/Category.js";
export { ACPCategory } from "./Options/ControlPanel/ACPCategory.js";
export { ACPOption } from "./Options/ControlPanel/ACPOption.js";
export { GroupCategory } from "./Options/Groups/GroupCategory.js";
export { GroupOption } from "./Options/Groups/GroupOption.js";
export { Option } from "./Options/Option.js";
export { OptionItem } from "./Options/OptionItem.js";
export { OptionType } from "./Options/OptionType.js";
export { EditPermission } from "./Options/UserPanel/EditPermission.js";
export { UserCategory } from "./Options/UserPanel/UserCategory.js";
export { UserOption } from "./Options/UserPanel/UserOption.js";
export { ViewPermission } from "./Options/UserPanel/ViewPermission.js";
export { Component } from "./PackageSystem/Component.js";
export { ConflictingPackageDescriptor } from "./PackageSystem/ConflictingPackageDescriptor.js";
export { FileDescriptor } from "./PackageSystem/FileDescriptor.js";
export { BBCodeInstruction } from "./PackageSystem/Instructions/Customization/BBCodeInstruction.js";
export { EmojiInstruction } from "./PackageSystem/Instructions/Customization/EmojiInstruction.js";
export { ACPTemplateInstruction } from "./PackageSystem/Instructions/Customization/Presentation/ACPTemplateInstruction.js";
export { TemplateInstruction } from "./PackageSystem/Instructions/Customization/Presentation/TemplateInstruction.js";
export { ThemeInstruction } from "./PackageSystem/Instructions/Customization/Presentation/ThemeInstruction.js";
export { SQLInstruction } from "./PackageSystem/Instructions/Data/SQLInstruction.js";
export { EventListenerInstruction } from "./PackageSystem/Instructions/Events/EventListenerInstruction.js";
export { ListenerInstruction } from "./PackageSystem/Instructions/Events/ListenerInstruction.js";
export { TemplateListenerInstruction } from "./PackageSystem/Instructions/Events/TemplateListenerInstruction.js";
export { ApplicationFileSystemInstruction } from "./PackageSystem/Instructions/FileSystem/ApplicationFileSystemInstruction.js";
export { FileSystemInstruction } from "./PackageSystem/Instructions/FileSystem/FileSystemInstruction.js";
export { ErrorMessageInstruction } from "./PackageSystem/Instructions/Globalization/ErrorMessageInstruction.js";
export { LocalizationInstruction } from "./PackageSystem/Instructions/Globalization/LocalizationInstruction.js";
export { LocalizationProviderInstruction } from "./PackageSystem/Instructions/Globalization/LocalizationProviderInstruction.js";
export { TranslationInstruction } from "./PackageSystem/Instructions/Globalization/TranslationInstruction.js";
export { Instruction } from "./PackageSystem/Instructions/Instruction.js";
export { InstructionSet } from "./PackageSystem/Instructions/InstructionSet.js";
export { NamedDeleteInstruction } from "./PackageSystem/Instructions/NamedDeleteInstruction.js";
export { NodeSystemInstruction } from "./PackageSystem/Instructions/NodeSystem/NodeSystemInstruction.js";
export { ACPOptionInstruction } from "./PackageSystem/Instructions/Options/ACPOptionInstruction.js";
export { GroupOptionInstruction } from "./PackageSystem/Instructions/Options/GroupOptionInstruction.js";
export { OptionInstruction } from "./PackageSystem/Instructions/Options/OptionInstruction.js";
export { UserOptionInstruction } from "./PackageSystem/Instructions/Options/UserOptionInstruction.js";
export { PHPInstruction } from "./PackageSystem/Instructions/PHPInstruction.js";
export { SelfContainedPHPInstruction } from "./PackageSystem/Instructions/SelfContainedPHPInstruction.js";
export { CronJobInstruction } from "./PackageSystem/Instructions/Tasks/CronJobInstruction.js";
export { UpdateInstructionSet } from "./PackageSystem/Instructions/UpdateInstructionSet.js";
export { OptionalPackageDescriptor } from "./PackageSystem/OptionalPackageDescriptor.js";
export { Package } from "./PackageSystem/Package.js";
export { PackageDescriptor } from "./PackageSystem/PackageDescriptor.js";
export { PackageFileDescriptor } from "./PackageSystem/PackageFileDescriptor.js";
export { Person } from "./PackageSystem/Person.js";
export { RequiredPackageDescriptor } from "./PackageSystem/RequiredPackageDescriptor.js";
export { XML } from "./Serialization/XML.js";
export { XMLEditor } from "./Serialization/XMLEditor.js";
export { CronJob } from "./Tasks/CronJob.js";
export { TimePeriod } from "./Tasks/TimePeriod.js";
/**
* The name of the invariant culture.
*/
export let InvariantCultureName = Constants.InvariantCultureName;
//# sourceMappingURL=index.js.map