You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @throws {Error} Throws an `Error` if no Dictionary exists with the provided name
14
-
*
15
-
* @deprecated This constructor is deprecated, it has been renamed to ConfigStore and can be imported via `import { ConfigStore } from 'fastly:config-store'`
14
+
* @param name The name of the Edge Dictionary.
15
+
* @throws {TypeError} If no Dictionary exists with the provided name.
16
+
* @throws {TypeError} If the provided name is empty, longer than 255 characters,
17
+
* does not start with an ASCII alphabetical character, or contains characters
18
+
* other than ASCII alphanumerics, underscores, and spaces.
19
+
* @deprecated Use {@link ConfigStore} from `'fastly:config-store'` instead.
16
20
*/
17
21
constructor(name: string);
18
22
/**
19
-
* Get a value for a key in the dictionary. If the provided key does not exist in the Dictionary then this returns `null`.
20
-
*
21
-
* @throws {TypeError} Throws an `TypeError` if the provided key is longer than 256 characters.
23
+
* Get a value for a key in the Dictionary. If the provided key does not
24
+
* exist in the Dictionary then this returns `null`.
22
25
*
23
-
* @deprecated This Class is deprecated, the Class has been renamed to ConfigStore and can be imported via `import { ConfigStore } from 'fastly:config-store'`
26
+
* @param key The key to retrieve.
27
+
* @throws {TypeError} If the provided key is empty or longer than 255 characters.
28
+
* @deprecated Use {@link ConfigStore} from `'fastly:config-store'` instead.
0 commit comments