21 lines
731 B
TypeScript
21 lines
731 B
TypeScript
// Database Helper - PostgreSQL
|
|
// Main entry point for the package
|
|
|
|
// Re-export database connection
|
|
export { db } from './src/db/db_index';
|
|
|
|
// Re-export schema
|
|
export * from './src/db/schema';
|
|
|
|
// Re-export helper methods
|
|
export * from './src/helper_methods/banner';
|
|
export * from './src/helper_methods/complaint';
|
|
export * from './src/helper_methods/const';
|
|
export * from './src/helper_methods/coupon';
|
|
export * from './src/helper_methods/store';
|
|
export * from './src/helper_methods/staff-user';
|
|
export * from './src/helper_methods/user';
|
|
export * from './src/helper_methods/vendor-snippets';
|
|
export * from './src/helper_methods/product';
|
|
export * from './src/helper_methods/slots';
|
|
export * from './src/helper_methods/order';
|