(value: unknown)
| 830 | }; |
| 831 | |
| 832 | const isPluginStorageRecord = (value: unknown): value is Readonly<Record<string, unknown>> => |
| 833 | value !== null && typeof value === "object" && !Array.isArray(value); |
| 834 | |
| 835 | const pluginStorageWhereOperators = ["eq", "in", "gt", "gte", "lt", "lte"] as const; |
| 836 |
no outgoing calls
no test coverage detected