steemconnect-firebase-functions
Version:
A TypeScript library that can help you build applications with SteemConnect and Firebase.
13 lines (12 loc) • 948 B
TypeScript
import { VoteConfig } from '../interfaces/VoteConfig';
import { CommentConfig } from './../interfaces/CommentConfig';
import { CommentOptionsConfig } from './../interfaces/CommentOptionsConfig';
import { CustomJsonConfig } from './../interfaces/CustomJsonConfig';
import { DeleteCommentConfig } from './../interfaces/DeleteCommentConfig';
import { Operation } from './../interfaces/Operation';
export declare const combineCommentWithOptions: (...args: (CommentConfig & CommentOptionsConfig)[]) => Operation[];
export declare const createBroadcastableVote: (x: VoteConfig) => any;
export declare const createBroadcastableComment: (x: CommentConfig) => any;
export declare const createBroadcastableCommentWithOptions: (x: CommentConfig & CommentOptionsConfig) => any;
export declare const createBroadcastableCustomJson: (x: CustomJsonConfig) => any;
export declare const createBroadcastableDeleteComment: (x: DeleteCommentConfig) => any;