chore: update dependencies

This commit is contained in:
AIsouler
2024-03-04 23:26:06 +08:00
parent c3f907f6d8
commit 86a5588238
3 changed files with 6 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ import { CommonSelector } from '@gkd-kit/selector';
export const parseSelector = (source: string) => {
const selector = CommonSelector.Companion.parse(source);
selector.propertyNames.forEach((name) => {
selector.propertyNames.forEach((name: string) => {
if (!allowPropertyNames.has(name)) {
throw new Error(`Property ${name} is not allowed in selector`);
}