27 lines
671 B
Markdown
27 lines
671 B
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [calckey-js](./calckey-js.md) > [entities](./calckey-js.entities.md) > [DriveFile](./calckey-js.entities.drivefile.md)
|
||
|
|
||
|
## entities.DriveFile type
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
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](./calckey-js.entities.id.md)<!-- -->, [DateString](./calckey-js.entities.datestring.md)
|
||
|
|