/** * Possible Asset Types * * Later, maybe also support: * "markdown","json","typescript" */ export type AssetType = "video" | "audio" | "image" | "text" | "other";