From a2ab5eee015b1dafc1a18cd2bc5f5c5756123d74 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Wed, 17 Aug 2022 13:12:24 +1000 Subject: docs: add category tag for built-in APIs (#15480) --- ext/webstorage/lib.deno_webstorage.d.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'ext/webstorage') 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 @@ /// /// -/** 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; -- cgit v1.2.3