| 10 | export type DirectoryContentType = "File" | "Directory"; |
| 11 | |
| 12 | export interface DirectoryContent { |
| 13 | [key: string]: [string, string]; // Key will be either "Directory" or "File" |
| 14 | } |
| 15 | |
| 16 | export enum ContextMenuType { |
| 17 | None, |
nothing calls this directly
no outgoing calls
no test coverage detected