kyrie
    Preparing search index...

    Interface PaintPolicy

    Paint policy for different output formats Defines how to wrap content with colors and handle newlines

    interface PaintPolicy {
        newline: string;
        wrap: (color: string, content: string) => string;
    }
    Index

    Properties

    Properties

    newline: string
    wrap: (color: string, content: string) => string