iceshrimp-legacy/packages/calckey-js/markdown/calckey-js.entities.drivefile.md
2023-06-23 21:13:03 -07:00

697 B

Home > calckey-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