| 1 | import { CellType, CodeLanguageType, AiProviderType } from '@srcbook/shared'; |
| 2 | |
| 3 | export interface FsObjectType { |
| 4 | path: string; |
| 5 | dirname: string; |
| 6 | basename: string; |
| 7 | isDirectory: boolean; |
| 8 | } |
| 9 | |
| 10 | export type SettingsType = { |
| 11 | baseDir: string; |
nothing calls this directly
no outgoing calls
no test coverage detected