UNPKG

@alisdigital/types-library

Version:

TypeScript type definitions for Papilet ecosystem with session soft delete and event management features

13 lines (12 loc) 233 B
/** * Request interface for SMS code generation */ export interface IGenerateCodeRequest { phoneNumber: string; } /** * Request interface for SMS code verification */ export interface IVerifyCodeRequest { code: string; }