@alvincrespo/hashnode-content-converter - v0.2.2
    Preparing search index...

    Interface ConvertedPost

    Represents a successfully converted post

    interface ConvertedPost {
        error?: string;
        outputPath: string;
        slug: string;
        success: boolean;
        title: string;
    }
    Index

    Properties

    error?: string

    Optional error message if conversion failed (only present if success is false)

    outputPath: string

    The output path where the markdown file was written

    slug: string

    The slug of the converted post (used as identifier)

    success: boolean

    Whether the conversion was successful

    title: string

    The title of the converted post