UNPKG

supertokens-node

Version:
9 lines (8 loc) 403 B
// @ts-nocheck import { SmsDeliveryInterface } from "../../../../../ingredients/smsdelivery/types"; import { TypePasswordlessSmsDeliveryInput } from "../../../types"; export default class SupertokensService implements SmsDeliveryInterface<TypePasswordlessSmsDeliveryInput> { private apiKey; constructor(apiKey: string); sendSms: (input: TypePasswordlessSmsDeliveryInput) => Promise<void>; }