dop-sdk
Version:
Mini App SDK for JavaScript by VTB
15 lines (14 loc) • 354 B
TypeScript
/** Shared info type. */
export interface ShareInfoType {
content: string;
url?: string;
imageBlob?: Blob;
}
export interface ShareInfo {
/** The content to be shared. */
content: string;
/** The URL to be shared (optional). */
url?: string;
/** A list of image data identifiers (optional). */
imageData?: number[];
}