turbocommons-ts
Version:
General purpose library that implements frequently used and generic software development tasks
30 lines (29 loc) • 1.87 kB
TypeScript
/**
* TurboCommons is a general purpose and cross-language library that implements frequently used and generic software development tasks.
*
* Website : -> https://turboframework.org/en/libs/turbocommons
* License : -> Licensed under the Apache License, Version 2.0. You may not use this file except in compliance with the License.
* License Url : -> http://www.apache.org/licenses/LICENSE-2.0
* CopyRight : -> Copyright 2015 Edertone Advanded Solutions (08211 Castellar del Vallès, Barcelona). http://www.edertone.com
*/
export { BrowserManager } from './managers/BrowserManager';
export { HTTPManager } from './managers/HTTPManager';
export { HTTPManagerBaseRequest } from './managers/httpmanager/HTTPManagerBaseRequest';
export { HTTPManagerGetRequest } from './managers/httpmanager/HTTPManagerGetRequest';
export { HTTPManagerPostRequest } from './managers/httpmanager/HTTPManagerPostRequest';
export { LocalizationManager } from './managers/LocalizationManager';
export { ModelHistoryManager } from './managers/ModelHistoryManager';
export { SerializationManager } from './managers/SerializationManager';
export { ValidationManager } from './managers/ValidationManager';
export { BaseStrictClass } from './model/BaseStrictClass';
export { CSVObject } from './model/CSVObject';
export { DateTimeObject } from './model/DateTimeObject';
export { HashMapObject } from './model/HashMapObject';
export { JavaPropertiesObject } from './model/JavaPropertiesObject';
export { TableObject } from './model/TableObject';
export { ArrayUtils } from './utils/ArrayUtils';
export { ConversionUtils } from './utils/ConversionUtils';
export { EncodingUtils } from './utils/EncodingUtils';
export { NumericUtils } from './utils/NumericUtils';
export { ObjectUtils } from './utils/ObjectUtils';
export { StringUtils } from './utils/StringUtils';