@serenity-is/corelib
Version:
Serenity Core Library
48 lines (46 loc) • 1.39 kB
text/typescript
/**
* ## Serenity Base Library
*
* This is the package containing base types and functions used in Serenity applications.
*
* The main entry for the NPM package is `@serenity-is/base`. This should be installed by default
* in your projects created from `Serene` or `StartSharp` template indirectly via
* `@serenity-is/corelib` package which references `@serenity-is/base`.
*
* ```json
* {
* "dependencies": {
* // ...
* "@serenity-is/corelib": "latest"
* }
* }
* ```
*
* The version number for this package should be equal or as close as possible to Serenity NuGet package versions in your project file.
* @packageDocumentation
*/
export * from "./authorization";
export * from "./blockui";
export * from "./config";
export * from "./criteria";
export * from "./debounce";
export * from "./dialogs";
export * from "./environment";
export * from "./errorhandling";
export * from "./fluent";
export * from "./formatting";
export * from "./html";
export * from "./icons";
export * from "./localtext";
export * from "./lookup";
export * from "./notify";
export * from "./propertyitem";
export * from "./scriptdata";
export * from "./services";
export * from "./servicetypes";
export * from "./system";
export * from "./toastr2";
export * from "./tooltip";
export * from "./uploader";
export * from "./userdefinition";
export * from "./validator";