mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-09-17 14:21:29 +00:00
14 lines
408 B
TypeScript
14 lines
408 B
TypeScript
import {DocumentList} from './src/document-list.component';
|
|
import {AlfrescoService} from './src/alfresco.service';
|
|
|
|
export * from './src/document-list.component';
|
|
export * from './src/alfresco.service';
|
|
|
|
export default {
|
|
directives: [DocumentList],
|
|
providers: [AlfrescoService]
|
|
}
|
|
|
|
export const ALFRESCO_DIRECTIVES: [any] = [DocumentList];
|
|
export const ALFRESCO_PROVIDERS: [any] = [AlfrescoService];
|