17 lines
445 B
TypeScript
17 lines
445 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Shared utility functions exports for the Physician App
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export * from './api';
|
|
export * from './constants';
|
|
export * from './helpers';
|
|
export * from './validators';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|