mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
14 lines
391 B
TypeScript
14 lines
391 B
TypeScript
import {Login} from './src/login.component';
|
|
import {Authentication} from './src/authentication.service';
|
|
|
|
export * from './src/login.component';
|
|
export * from './src/authentication.service';
|
|
|
|
export default {
|
|
directives: [Login],
|
|
providers: [Authentication]
|
|
}
|
|
|
|
export const ALFRESCO_LOGIN_DIRECTIVES: [any] = [Login];
|
|
export const ALFRESCO_AUTHENTICATION: [any] = [Authentication];
|