| 7 | import type { TScene } from "@/lib/timeline"; |
| 8 | |
| 9 | export interface StorageAdapter<T> { |
| 10 | get(key: string): Promise<T | null>; |
| 11 | set(key: string, value: T): Promise<void>; |
| 12 | remove(key: string): Promise<void>; |
| 13 | list(): Promise<string[]>; |
| 14 | clear(): Promise<void>; |
| 15 | } |
| 16 | |
| 17 | export interface MediaAssetData { |
| 18 | id: string; |
no outgoing calls
no test coverage detected