@sonatel-os/juf
Version:
It's an helpful Javascript Utility Framework to ease application development in SONATEL context.
27 lines (26 loc) • 947 B
TypeScript
export const EmailStructure: import("superstruct").Struct<{
body: string;
subject: string;
from: string;
to: string;
html?: boolean | undefined;
}, {
subject: import("superstruct").Struct<string, null>;
to: import("superstruct").Struct<string, null>;
from: import("superstruct").Struct<string, null>;
body: import("superstruct").Struct<string, null>;
html: import("superstruct").Struct<boolean | undefined, null>;
}>;
export const SmsStructure: import("superstruct").Struct<{
body: string;
to: string;
senderName: string;
confidential?: boolean | undefined;
scheduledFor?: any;
}, {
body: import("superstruct").Struct<string, null>;
to: import("superstruct").Struct<string, null>;
confidential: import("superstruct").Struct<boolean | undefined, null>;
scheduledFor: import("superstruct").Struct<any, null>;
senderName: import("superstruct").Struct<string, null>;
}>;