supertokens-node
Version:
NodeJS driver for SuperTokens core
13 lines (12 loc) • 497 B
TypeScript
// @ts-nocheck
import { TypePasswordlessSmsDeliveryInput } from "../../../types";
import { SmsDeliveryInterface } from "../../../../../ingredients/smsdelivery/types";
import { UserContext } from "../../../../../types";
export default class BackwardCompatibilityService implements SmsDeliveryInterface<TypePasswordlessSmsDeliveryInput> {
constructor();
sendSms: (
input: TypePasswordlessSmsDeliveryInput & {
userContext: UserContext;
}
) => Promise<void>;
}