Remove non existing query syscall

pull/85/head
Zef Hemel 2022-09-30 15:22:46 +02:00
parent b35c60ee60
commit 99c1b41d89
1 changed files with 0 additions and 6 deletions

View File

@ -45,12 +45,6 @@ export async function queryPrefix(
return syscall("store.queryPrefix", prefix);
}
export async function query(
query: Query
): Promise<{ key: string; value: any }[]> {
return syscall("store.query", query);
}
export async function deletePrefix(prefix: string): Promise<void> {
return syscall("store.deletePrefix", prefix);
}