mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
18 lines
586 B
TypeScript
18 lines
586 B
TypeScript
///<reference path='./node_modules/angular2/typings/browser.d.ts'/>
|
|
import { HelloWorld } from './src/HelloWorld';
|
|
import { DocumentList } from "./src/document-list.component";
|
|
import { AlfrescoService } from "./src/alfresco.service";
|
|
|
|
export * from './src/HelloWorld';
|
|
export * from './src/document-list.component';
|
|
export * from './src/alfresco.service';
|
|
|
|
export default {
|
|
directives: [HelloWorld, DocumentList],
|
|
providers: [AlfrescoService]
|
|
}
|
|
|
|
export const ALFRESCO_DIRECTIVES: [any] = [HelloWorld, DocumentList];
|
|
export const ALFRESCO_PROVIDERS: [any] = [AlfrescoService];
|
|
|