Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/kv_toolbox/blob_util.ts>BlobMeta

Utilities for working with Deno KV 🦕🗝️
Go to Latest
type alias BlobMeta
import { type BlobMeta } from "https://deno.land/x/kv_toolbox@0.16.2/blob_util.ts";

When a blob entry was originally a Blob or File a sub-entry will be set with the value of this meta data.

definition: { kind: "blob"; type: string; size?: number; } | { kind: "file"; type: string; lastModified: number; name: string; size?: number; } | { kind: "buffer"; size?: number; }