MCPcopy Create free account
hub / github.com/ZenNotes/zennotes / AssetMeta

Interface AssetMeta

packages/bridge-contract/src/ipc.ts:507–517  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

505export type ImportedAssetKind = 'image' | 'pdf' | 'audio' | 'video' | 'file'
506
507export interface AssetMeta {
508 /** Vault-relative path to the asset, POSIX-style. */
509 path: string
510 /** File name only. */
511 name: string
512 kind: ImportedAssetKind
513 /** Zero-based order within the parent directory as read from disk. */
514 siblingOrder: number
515 size: number
516 updatedAt: number
517}
518
519export interface DeletedAsset {
520 /** Original vault-relative path before the asset was removed. */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected