@enable-tech/shared-types
Version:
This package represents the single source of truth of the Types being used in the codebase (front-end and back-end) of enable.tech, It is an organization-scoped package. So, all the development teams belonging to it can participate to enhance it.
16 lines • 371 B
TypeScript
export type T_PaymentsQueryParams = {
id?: string;
page?: number;
limit?: number;
code?: string;
companyId?: string;
};
export type T_PostCustomerLessPaymentQueryParams = {
uniqueIdentifier: string;
customerInfo: {
name: string;
phone: string | number;
countryCode: string;
};
};
//# sourceMappingURL=index.d.ts.map