UNPKG

steemconnect-firebase-functions

Version:

A TypeScript library that can help you build applications with SteemConnect and Firebase.

8 lines (7 loc) 306 B
import { ClientCredentials } from './interfaces/ClientCredentials'; import { Scope } from './interfaces/Scope'; export declare function getAuthorizationUrl({clientId, redirectUri, scope, state}: ClientCredentials & { redirectUri: string; scope: Array<Scope>; state?: string; }): string;