Update api-report

Signed-off-by: Severin Wischmann <severinwischmann@nianticlabs.com>
This commit is contained in:
Severin Wischmann
2024-11-06 16:39:27 +01:00
parent 1cce261913
commit 6011c8d88a
4 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -22,8 +22,8 @@ export type AutocompleteHandler = ({
context: Record<string, string>;
}) => Promise<{
results: {
title: string;
id?: string;
title?: string;
id: string;
}[];
}>;