- Introduced new TypeScript types for catalog products, including Internet, SIM, and VPN plans, along with their respective addons and installation options. - Created a new domain package with essential configurations, including package.json and tsconfig.json for TypeScript support. - Added common types and utility functions for type safety and data handling across the application. - Established a structured export pattern for domain types, enhancing organization and accessibility for future development.
17 lines
399 B
TypeScript
17 lines
399 B
TypeScript
// Export all shared types
|
|
export * from "./common";
|
|
export * from "./user";
|
|
export * from "./invoice";
|
|
export * from "./subscription";
|
|
export * from "./payment";
|
|
export * from "./case";
|
|
export * from "./order";
|
|
|
|
// Export constants and utilities
|
|
export * from "./status";
|
|
export * from "./validation";
|
|
export * from "./array-utils";
|
|
|
|
// Export single logger
|
|
export { logger, log } from "./logger";
|