Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Sep 11, 2024
1 parent 0bdd1de commit fae841e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ export interface Driver<OptionsT = any, InstanceT = any> {
commonOptions?: TransactionOptions
) => MaybePromise<{ key: string; value: StorageValue }[]>;
/** @experimental */
getItemRaw?: (key: string, opts?: TransactionOptions) => MaybePromise<unknown>;
getItemRaw?: (
key: string,
opts?: TransactionOptions
) => MaybePromise<unknown>;
setItem?: (
key: string,
value: string,
Expand Down

0 comments on commit fae841e

Please sign in to comment.