honkit
Version:
HonKit is building beautiful books using Markdown.
13 lines (12 loc) • 477 B
TypeScript
/**
Returns a new summary, with the an article moved after another
article. Unlike `moveArticle`, does not ensure that the article
will be found at the target's level plus one.
@param {Summary} summary
@param {String|SummaryArticle} origin
@param {String|SummaryArticle} afterTarget
@return {Summary}
*/
declare function moveArticleAfter(summary: any, origin: any, afterTarget: any): any;
export default moveArticleAfter;
//# sourceMappingURL=moveArticleAfter.d.ts.map