UNPKG

kaven-utils

Version:

Utils for Node.js.

24 lines (23 loc) 869 B
/******************************************************************** * @author: Kaven * @email: kaven@wuwenkai.com * @website: http://blog.kaven.xyz * @file: [Kaven-Utils] /src/KavenMarkdown.ts * @create: 2021-08-31 18:19:54.534 * @modify: 2023-11-25 22:38:33.047 * @version: 5.0.7 * @times: 21 * @lines: 52 * @copyright: Copyright © 2021-2023 Kaven. All Rights Reserved. * @description: [description] * @license: [license] ********************************************************************/ import { MarkdownSection } from "kaven-basic"; export declare class KavenMarkdown { readonly File: string; EndOfLineSequence?: string; Section?: MarkdownSection; constructor(file: string); Load(): Promise<MarkdownSection>; Save(path: string, ms?: MarkdownSection): Promise<void>; }