UNPKG

@codebucket/sms

Version:

SMS module

11 lines (10 loc) 291 B
import { SendOptions } from '../types'; /** * All SMS providers must implement a single send() method. */ export declare abstract class BaseProvider { /** * Handle all SMS send requests based on options.type and keys. */ abstract send(opts: SendOptions): Promise<any>; }