steemconnect-firebase-functions
Version:
A TypeScript library that can help you build applications with SteemConnect and Firebase.
5 lines (4 loc) • 424 B
TypeScript
import { AccessTokenResponse } from './../shared/interfaces/AccessTokenResponse';
import { BroadcastResult } from './interfaces/BroadcastResult';
import { Comment } from './interfaces/Comment';
export declare const broadcastComment: ({ parentPermlink, commentPermlink, commentBody, parentAuthor, commentTitle, commentMetadata }: Comment) => ({ access_token, username }: AccessTokenResponse) => Promise<BroadcastResult>;