mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-09 01:56:21 -04:00
11 lines
137 B
TypeScript
11 lines
137 B
TypeScript
export type FileKind =
|
|
| 'Unknown'
|
|
| 'Directory'
|
|
| 'Package'
|
|
| 'Archive'
|
|
| 'Image'
|
|
| 'Video'
|
|
| 'Audio'
|
|
| 'Plaintext'
|
|
| 'Alias';
|