| 9 | * File node metadata |
| 10 | */ |
| 11 | export interface FileMetadata { |
| 12 | /** File size (bytes) */ |
| 13 | size?: number; |
| 14 | /** Creation timestamp (milliseconds) */ |
| 15 | createdAt?: number; |
| 16 | /** Update timestamp (milliseconds) */ |
| 17 | updatedAt?: number; |
| 18 | /** MIME type */ |
| 19 | mimeType?: string; |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * File node type |
nothing calls this directly
no outgoing calls
no test coverage detected