diff options
Diffstat (limited to 'ext/webstorage')
-rw-r--r-- | ext/webstorage/lib.deno_webstorage.d.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/webstorage/lib.deno_webstorage.d.ts b/ext/webstorage/lib.deno_webstorage.d.ts index 1b87c5ff8..14a34187f 100644 --- a/ext/webstorage/lib.deno_webstorage.d.ts +++ b/ext/webstorage/lib.deno_webstorage.d.ts @@ -5,7 +5,12 @@ /// <reference no-default-lib="true" /> /// <reference lib="esnext" /> -/** This Web Storage API interface provides access to a particular domain's session or local storage. It allows, for example, the addition, modification, or deletion of stored data items. */ +/** This Web Storage API interface provides access to a particular domain's + * session or local storage. It allows, for example, the addition, modification, + * or deletion of stored data items. + * + * @category Web Storage API + */ interface Storage { /** * Returns the number of key/value pairs currently present in the list associated with the object. @@ -36,6 +41,7 @@ interface Storage { [name: string]: any; } +/** @category Web Storage API */ declare var Storage: { prototype: Storage; new (): Storage; |