17 lines
499 B
TypeScript
17 lines
499 B
TypeScript
/**
|
|
* Central export point for all Mail Manager services
|
|
*/
|
|
|
|
// Services
|
|
export { providerService } from './providerService';
|
|
export { serviceService } from './serviceService';
|
|
export { collectionService } from './collectionService';
|
|
export { entityService } from './entityService';
|
|
|
|
// Type exports
|
|
export type * from '../types/common';
|
|
export type * from '../types/provider';
|
|
export type * from '../types/service';
|
|
export type * from '../types/collection';
|
|
export type * from '../types/entity';
|