2025-05-12 05:38:44 +09:00

12 lines
453 B
TypeScript

/**
Returns a new summary, with the given article removed from its
origin level, and placed at the given target level.
@param {Summary} summary
@param {String|SummaryArticle} origin: level to remove
@param {String|SummaryArticle} target: the level where the article will be found
@return {Summary}
*/
declare function moveArticle(summary: any, origin: any, target: any): any;
export default moveArticle;
//# sourceMappingURL=moveArticle.d.ts.map