(value: unknown)
| 1077 | }; |
| 1078 | |
| 1079 | const isPluginStorageRecord = (value: unknown): value is Readonly<Record<string, unknown>> => |
| 1080 | value !== null && typeof value === "object" && !Array.isArray(value); |
| 1081 | |
| 1082 | const pluginStorageWhereOperators = ["eq", "in", "gt", "gte", "lt", "lte"] as const; |
| 1083 |
no outgoing calls
no test coverage detected