biketag-admin
Version:
<h1 align=center>BikeTag-Admin</h1> <div align="center"> <img alt="biketag-admin logo" src="https://raw.githubusercontent.com/keneucker/biketag-website/production/public/img/Tag-Logo-Stacked-V2-medium.png" height="auto" width="200" style="border-radius:25
14 lines (13 loc) • 807 B
TypeScript
import { BikeTagClient } from 'biketag';
import { BikeTagTagsStoreState, Tag } from '../common';
export declare const useBikeTagTagsStore: import("pinia").StoreDefinition<`${string}::tags`, BikeTagTagsStoreState, {
getTag: (state: {
tags: Record<string, Tag[]>;
} & import("pinia").PiniaCustomStateProperties<BikeTagTagsStoreState>) => (game: string, tagnumber: number) => Promise<Tag | undefined>;
getTags: (state: {
tags: Record<string, Tag[]>;
} & import("pinia").PiniaCustomStateProperties<BikeTagTagsStoreState>) => (game: string) => Promise<Tag[]>;
}, {
fetchTags(biketagClient: BikeTagClient, cached?: boolean): Promise<Record<string, Tag[]>>;
fetchTagsForGame(biketagClient: BikeTagClient, game: string, cached?: boolean): Promise<Record<string, Tag[]>>;
}>;