Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CBOROptions

import type { CBOROptions } from "https://raw.githubusercontent.com/aaronhuggins/cbor-redux/0c8b3f4fa619fee986dd91e254d999fc9cfd396e/mod.ts";

Options for the decoder.

interface CBOROptions {
dictionary?: DictionaryOption;
mode?: ModeOption;
}

§Properties

§

Set the dictionary type for supported environments; defaults to object.

§

Set the mode to strict to hard fail on duplicate keys in CBOR dictionaries; defaults to strict.