Interface BlueprintOptions

interface BlueprintOptions {
    formatCode?: ((content: string, syntax:
        | "ruby"
        | "json"
        | "javascript"
        | "python"
        | "php"
        | "go"
        | "java"
        | "csharp"
        | "bash") => Promise<string>);
}

Properties

Properties

formatCode?: ((content: string, syntax:
    | "ruby"
    | "json"
    | "javascript"
    | "python"
    | "php"
    | "go"
    | "java"
    | "csharp"
    | "bash") => Promise<string>)