16 lines
561 B
TypeScript
16 lines
561 B
TypeScript
import { companySignupSchema } from './auth.company.schemas';
|
|
import type { output } from 'zod';
|
|
type CompanySignupInput = output<typeof companySignupSchema>;
|
|
export declare function signup(body: CompanySignupInput): Promise<{
|
|
companyId: string;
|
|
companyName: string;
|
|
slug: string;
|
|
invitationId: null;
|
|
trialEndsAt: string;
|
|
nextStep: string;
|
|
emailDelivery: {};
|
|
}>;
|
|
export declare function completeSignupDisabled(): void;
|
|
export declare function verifyEmailDisabled(): void;
|
|
export {};
|
|
//# sourceMappingURL=auth.company.service.d.ts.map
|