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