UNPKG

@omnimedia/omnitool

Version:

open source video processing tools

13 lines (12 loc) 277 B
import { Item } from "./item.js"; /** sha256 hash */ export type Hash = string; /** item identifier */ export type Id = number; export type TimelineFile = { info: "https://omniclip.app/"; format: "timeline"; version: number; root: Id; items: Item.Any[]; };