1
0
Fork 1
mirror of https://example.com synced 2024-11-23 05:16:39 +09:00
firefish/packages/firefish-js/markdown/firefish-js.entities.drivefile.md
2023-07-20 04:17:05 +09:00

703 B

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