26 lines
659 B
Markdown
26 lines
659 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index) > [valkyrie-js](./valkyrie-js) > [entities](./valkyrie-js.entities) > [DriveFile](./valkyrie-js.entities.drivefile)
|
|
|
|
## 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](./valkyrie-js.entities.id)<!-- -->, [DateString](./valkyrie-js.entities.datestring)
|
|
|