export type Asset = {
    /**
     * The id of the chunk that the asset is created from. Empty means the asset is not created from a chunk.
     */
    chunk_id: number | null;
    content: string | null;
    /**
     * The size of the asset in bytes.
     */
    size: number;
    filename: string;
};
