9 lines
151 B
TypeScript
9 lines
151 B
TypeScript
type SmsPayload = {
|
|
to: string;
|
|
body: string;
|
|
};
|
|
|
|
export async function sendSms(_payload: SmsPayload) {
|
|
throw new Error("SMS not configured");
|
|
}
|