UNPKG

willwill96-petfinder-graphql

Version:

contains files and utilities to bootstrap a graphql instance wrapping the petfinder api

7 lines (6 loc) 190 B
export interface Options { petfinderApiKey: string; petfinderSecretKey: string; } declare const getAccessToken: (options: Options) => Promise<string>; export default getAccessToken;