@unchainedshop/plugins
Version:
Official plugin collection for the Unchained Engine with payment, delivery, and pricing adapters
23 lines (22 loc) • 544 B
TypeScript
import { type IWorkerAdapter } from '@unchainedshop/core';
export declare const BudgetSMSWorker: IWorkerAdapter<{
from?: string;
to: string;
text?: string;
test?: boolean;
customid?: string;
price?: boolean;
mccmnc?: boolean;
credit?: boolean;
[key: string]: any;
}, any>;
export declare function checkBudgetSmsCredentials(): Promise<{
success: boolean;
credit: number;
error?: undefined;
} | {
error: any;
success?: undefined;
credit?: undefined;
}>;
export default BudgetSMSWorker;