@sonatel-os/juf
Version:
The community SDK for Orange Money, SMS, Email & Sonatel APIs on the Orange Developer Platform.
35 lines (32 loc) • 1.06 kB
TypeScript
export { C as Communication } from '../communicationService-CvpK9mic.js';
import * as superstruct from 'superstruct';
import 'axios';
import '../auth/index.js';
import '../cache-Bxhh3lYR.js';
declare const EmailStructure: superstruct.Struct<{
subject: string;
to: string;
from: string;
body: string;
html?: boolean | undefined;
}, {
subject: superstruct.Struct<string, null>;
to: superstruct.Struct<string, null>;
from: superstruct.Struct<string, null>;
body: superstruct.Struct<string, null>;
html: superstruct.Struct<boolean | undefined, null>;
}>;
declare const SmsStructure: superstruct.Struct<{
to: string;
body: string;
senderName: string;
confidential?: boolean | undefined;
scheduledFor?: any;
}, {
body: superstruct.Struct<string, null>;
to: superstruct.Struct<string, null>;
confidential: superstruct.Struct<boolean | undefined, null>;
scheduledFor: superstruct.Struct<any, null>;
senderName: superstruct.Struct<string, null>;
}>;
export { EmailStructure, SmsStructure };