(path: string, updatedAt: number, folder: NoteMeta['folder'] = 'inbox')
| 4 | import { getBufferNavigationTarget } from './buffer-navigation' |
| 5 | |
| 6 | function note(path: string, updatedAt: number, folder: NoteMeta['folder'] = 'inbox'): Pick<NoteMeta, 'path' | 'folder' | 'updatedAt'> { |
| 7 | return { path, folder, updatedAt } |
| 8 | } |
| 9 | |
| 10 | function leaf(id: string, tabs: string[], activeTab: string | null = tabs[0] ?? null): PaneLayout { |
| 11 | return { kind: 'leaf', id, tabs, pinnedTabs: [], activeTab } |
no outgoing calls
no test coverage detected