| 1 | export interface IUserFile { |
| 2 | uniqueID: string; |
| 3 | mimeType: any; |
| 4 | id: string; |
| 5 | userId: string; |
| 6 | path: string; |
| 7 | dateCreated: number; |
| 8 | dateModified: number; |
| 9 | type: string; |
| 10 | content: string; |
| 11 | lastIndexed: number; |
| 12 | } |
| 13 | |
| 14 | export interface IPreferences { |
| 15 | contentScale: number; |
nothing calls this directly
no outgoing calls
no test coverage detected