Returns
linkSms()
Parameters
| Parameter | Type |
|---|---|
phoneNumber | string |
Returns
Promise<{
flowId: string;
message: string;
}>function useLinkSms(): {
linkSms: (phoneNumber: string) => Promise<{
flowId: string;
message: string;
}>;
};
{
linkSms: (phoneNumber: string) => Promise<{
flowId: string;
message: string;
}>;
}
linkSms: (phoneNumber: string) => Promise<{
flowId: string;
message: string;
}>;
| Parameter | Type |
|---|---|
phoneNumber | string |
Promise<{
flowId: string;
message: string;
}>Was this page helpful?