Fix pk typing

This commit is contained in:
rijkvanzanten
2022-07-21 11:50:21 -04:00
parent ab36a31e29
commit 141501ac66

View File

@@ -29,7 +29,7 @@ import { useI18n } from 'vue-i18n';
interface Props {
collection: string;
primaryKey?: string;
primaryKey?: string | number;
selection?: (number | string)[];
location: 'collection' | 'item';
}