15 lines
377 B
TypeScript
15 lines
377 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Barrel export for Profile services
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export * from './profileAPI';
|
|
export * from './settingsAPI';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|