| 156 | export type ImportedAssetKind = 'image' | 'pdf' | 'audio' | 'video' | 'file' |
| 157 | |
| 158 | export interface AssetMeta { |
| 159 | /** Vault-relative path to the asset, POSIX-style. */ |
| 160 | path: string |
| 161 | /** File name only. */ |
| 162 | name: string |
| 163 | kind: ImportedAssetKind |
| 164 | size: number |
| 165 | updatedAt: number |
| 166 | } |
| 167 | |
| 168 | export interface ImportedAsset { |
| 169 | /** File name stored under the vault-root attachments directory. */ |
nothing calls this directly
no outgoing calls
no test coverage detected