Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GenOpt

import type { GenOpt } from "https://raw.githubusercontent.com/ycw/svg-path/main/src/mod.ts";

Generator options.

interface GenOpt {
combine?: boolean;
multiline?: boolean;
terse?: boolean;
truncate?: number;
}

§Properties

§
combine?: boolean
[src]

Combine unnecessary commands.

§
multiline?: boolean
[src]

Separate commands by '\n'.

§
terse?: boolean
[src]

Eliminate unnecessary whitespaces and leading zeros.

§
truncate?: number
[src]

Decimal places that a number is truncated to.