(value: unknown)
| 1068 | }; |
| 1069 | |
| 1070 | const isPluginStorageRecord = (value: unknown): value is Readonly<Record<string, unknown>> => |
| 1071 | value !== null && typeof value === "object" && !Array.isArray(value); |
| 1072 | |
| 1073 | const pluginStorageWhereOperators = ["eq", "in", "gt", "gte", "lt", "lte"] as const; |
| 1074 |
no outgoing calls
no test coverage detected