export async function getTagsAutocompletion()

in server/frontend/src/autocompletion.ts [14:16]


export async function getTagsAutocompletion(settingsId: string, term: string): Promise<TagType[]> {
    return convertToTags(await getAutocompletion(settingsId, term));
}