X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/a7cf03c192470cbab13edeb1aec99e0c66dede10..be1ce532b26aea4e3e2258da78849bd245f7f78b:/src/lib/stores/tags.ts diff --git a/src/lib/stores/tags.ts b/src/lib/stores/tags.ts index 79f017e..c96da2d 100644 --- a/src/lib/stores/tags.ts +++ b/src/lib/stores/tags.ts @@ -1,4 +1,6 @@ import { store } from './apollo'; import { GET_TAG } from '$lib/data/queries'; -export const getTag = (id: string) => store({ key: 'tag', query: GET_TAG, variables: { id } }); +import type { Tag } from '$lib/data/types'; + +export const getTag = (id: string) => store({ key: 'tag', query: GET_TAG, variables: { id } });