* adding azure table client module * adding azure table client module * adding azure table client module * adding azure table client module * adding azure table client module
23 lines
593 B
TypeScript
23 lines
593 B
TypeScript
// Azure App Configuration
|
|
|
|
export * from './azAppConfig/az-app-config.module';
|
|
export * from './azAppConfig/az-app-config.service';
|
|
|
|
// Azure Data Tables
|
|
|
|
export * from './azTable/az-table.module';
|
|
export * from './azTable/az-table.service';
|
|
export { TableClient } from '@azure/data-tables';
|
|
|
|
// Auth
|
|
|
|
export * from './auth/auth.module';
|
|
export * from './auth/auth.gaurd';
|
|
export * from './auth/public.decorator';
|
|
|
|
// MS Graph
|
|
|
|
export * from './msGraph/ms-graph.module';
|
|
export * from './msGraph/ms-graph.service';
|
|
export { Client as MsGraphClient } from '@microsoft/microsoft-graph-client';
|