From 9fc2dbcbcb940f36c19c343e14052474478725fb Mon Sep 17 00:00:00 2001 From: Bauke Date: Wed, 28 Dec 2022 12:35:46 +0100 Subject: [PATCH] Export ValueOptions. --- source/value.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/value.ts b/source/value.ts index c923a20..7f93635 100644 --- a/source/value.ts +++ b/source/value.ts @@ -2,7 +2,7 @@ import browser from "webextension-polyfill"; export type StorageArea = browser.Storage.StorageArea; -type ValueOptions = { +export type ValueOptions = { /** A function to convert a string to the type `T`. */ deserialize: (input: string) => T; /** The key to use for storage. */