@cranberry-money/shared-types
Version:
Shared TypeScript type definitions for Blueberry platform
31 lines • 624 B
TypeScript
export interface SigninPayload {
email: string;
password: string;
}
export interface SignupPayload {
email: string;
password: string;
passwordConfirm: string;
}
export interface EmailVerificationPayload {
token: string;
}
export interface DeviceInfo {
browser: string;
os: string;
}
export interface TokenRefreshResponse {
status?: number;
data?: {
access?: string;
refresh?: string;
};
}
export interface TokenRefreshPayload {
refresh: string;
}
export interface TokenRefreshData {
access: string;
refresh: string;
}
//# sourceMappingURL=auth.d.ts.map