9 lines
511 B
TypeScript
9 lines
511 B
TypeScript
import type { output } from 'zod';
|
|
import { renterUpdateSchema } from './auth.renter.schemas';
|
|
type RenterUpdateInput = output<typeof renterUpdateSchema>;
|
|
export declare function findRenterProfile(id: string): any;
|
|
export declare function findSavedCompanies(companyIds: string[]): any;
|
|
export declare function updateRenterProfile(id: string, data: RenterUpdateInput): any;
|
|
export declare function updateRenterFcmToken(id: string, fcmToken: string): any;
|
|
export {};
|
|
//# sourceMappingURL=auth.renter.repo.d.ts.map
|