@veltdev/sdk
Version:
Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.
43 lines (42 loc) • 780 B
TypeScript
import { RecorderFileFormat } from "../../utils/enums";
export declare class Attachment {
/**
* Unique identifier for the comment pin annotation.
*
* Auto generated.
*/
attachmentId: number;
/**
* File name
*/
name?: string;
/**
* Unique path in storage
*/
bucketPath?: string;
/**
* File size
*/
size?: number;
/**
* File type
*/
type?: RecorderFileFormat;
/**
* Download url of a file
*/
url?: string;
/**
* Thumbnail img in base64 format
*/
thumbnail?: string;
thumbnailWithPlayIconUrl?: string;
/**
* Metadata of an attachment
*/
metadata?: any;
/**
* Mime type of an attachment
*/
mimeType?: any;
}