trashposs/packages/trashposs-js/markdown/trashposs-js.entities.drivefile.md
2024-04-06 22:57:52 +02:00

709 B

Home > trashposs-js > entities > DriveFile

entities.DriveFile type

Signature:

export declare type DriveFile = {
	id: ID;
	createdAt: DateString;
	isSensitive: boolean;
	name: string;
	thumbnailUrl: string;
	url: string;
	type: string;
	size: number;
	md5: string;
	blurhash: string;
	comment: string | null;
	properties: Record<string, any>;
};

References: ID, DateString