Denys Vuika 3b4ce3b857
[ACS-5839] migrate to latest JS-API types (#8859)
* [ci:force] migrate Minimal Node to Node

* [ci:force] remove js-api wrappers and use real types

* [ci:force] remove js-api wrappers and use real types

* [ci:force] fix linting errors

* [ci:force] fix linting errors

* [ci:force] security fixes

* [ci:force] sonarcloud bug fixes

* [ci:force] dead code elimination, sonar suggested fixes
2023-08-29 20:56:40 +01:00

53 lines
2.2 KiB
TypeScript

/*!
* @license
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './components/document-list.component';
export * from './components/node.event';
export * from './components/content-action/content-action.component';
export * from './components/content-action/content-action-list.component';
export * from './components/library-name-column/library-name-column.component';
export * from './components/library-role-column/library-role-column.component';
export * from './components/library-status-column/library-status-column.component';
export * from './components/name-column/name-column.component';
export * from './components/filter-header/filter-header.component';
export * from './components/trashcan-name-column/trashcan-name-column.component';
export * from './components/file-auto-download/file-auto-download.component';
// data
export * from './data/share-datatable-adapter';
export * from './data/share-data-row.model';
export * from './data/image-resolver.model';
export * from './data/row-filter.model';
// services
export * from './services/folder-actions.service';
export * from './services/document-actions.service';
export * from './services/document-list.service';
export * from './services/node-actions.service';
export * from './services/custom-resources.service';
export * from './services/lock.service';
// models
export * from './models/content-action.model';
export * from './models/permissions.model';
export * from './models/permissions-style.model';
export * from './models/node-action.enum';
export * from './interfaces/document-list-loader.interface';
export * from './document-list.module';