@shortcut/client
    Preparing search index...

    Interface CreateDocParams

    interface CreateDocParams {
        content: string;
        content_format?: "markdown" | "html";
        description?: string;
        title: string;
    }
    Index

    Properties

    content: string

    The content of the new Doc.

    content_format?: "markdown" | "html"

    Format of the content being sent. Defaults to 'html'. If 'markdown', content will be converted to HTML for storage.

    description?: string

    An optional description for the Doc.

    1024

    title: string

    The title of the new Doc.

    1

    256