steemconnect-firebase-functions
Version:
A TypeScript library that can help you build applications with SteemConnect and Firebase.
13 lines (12 loc) • 426 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const createOperation_1 = require("./createOperation");
exports.createComment = ({ parent_permlink, author, permlink, body, parent_author = '', title = '', json_metadata = '' }) => createOperation_1.createOperation('comment', {
parent_permlink,
author,
permlink,
body,
parent_author,
title,
json_metadata
});
;