biketag
Version:
The Javascript client API for BikeTag Games
7 lines (6 loc) • 377 B
TypeScript
import { S3Client } from '@aws-sdk/client-s3';
import { BikeTagApiResponse } from '../common/types';
import { Tag } from '../common/schema';
import { updateTagPayload } from './helpers';
import { default as TinyCache } from 'tinycache';
export declare function updateTag(client: S3Client, payload: updateTagPayload, cache?: typeof TinyCache): Promise<BikeTagApiResponse<Tag>>;