fixed typing

This commit is contained in:
Anton Tranelis 2024-02-29 10:20:01 +01:00
parent e91f240c74
commit bf94461bec

View File

@ -79,7 +79,7 @@ export interface Tag {
export interface ItemsApi<T> {
getItems(): Promise<any>,
getItem?(item: T): Promise<any>,
getItem?(id: string): Promise<any>,
createItem?(item : T): Promise<any>,
updateItem?(item : T): Promise<any>,
deleteItem?(id : string): Promise<any>,