UNPKG

react-playmakers

Version:

React wrapper providing utilities for PlayMakers integration

11 lines (10 loc) 286 B
type FetchTagsMethod = (quiet?: boolean) => Promise<string[]>; interface UseTagsReturn { refresh: FetchTagsMethod; fetched: boolean; tags: string[]; } export declare const useTags: (projectId: any, params: { [key: string]: any; }) => UseTagsReturn; export {};