Function
storageError
(props: Omit<ConstructorParameters<typeof PlatformError.SystemError>[0], "reason" | "module">)
Source from the content-addressed store, hash-verified
| 248 | |
| 249 | /** @internal */ |
| 250 | const storageError = (props: Omit<ConstructorParameters<typeof PlatformError.SystemError>[0], "reason" | "module">) => |
| 251 | new PlatformError.SystemError({ |
| 252 | reason: "PermissionDenied", |
| 253 | module: "KeyValueStore", |
| 254 | ...props |
| 255 | }) |
| 256 | |
| 257 | /** @internal */ |
| 258 | export const layerStorage = (evaluate: LazyArg<Storage>) => |
Tested by
no test coverage detected