(props: Omit<ConstructorParameters<typeof PlatformError.SystemError>[0], "reason" | "module">)
| 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>) => |
no outgoing calls
no test coverage detected
searching dependent graphs…