//=========================================== // THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY UNLESS YOU ALSO EDIT THE CORRESPONDING FILE IN packages/template //=========================================== import { AsyncStoreProperty } from "../common"; export type DataVaultStore = & { id: string, setValue: (key: string, value: string, options: { secret: string }) => Promise, } & AsyncStoreProperty<"value", [key: string, options: { secret: string }], string | null, false>;