Variable CommandFactoryConst

CommandFactory: {
    A: ((radiusX, radiusY, xAxisRotation, largeArcFlag, sweepFlag, to) => ArcCommand);
    C: ((ctrl1, ctrl2, to) => CubicBezierCommand);
    L: ((to) => LineCommand);
    M: ((to) => MoveCommand);
    Q: ((ctrl1, to) => QuadraticBezierCommand);
    S: ((ctrl2, to) => SymmetricCubicBezierCommand);
    T: ((to) => SymmetricQuadraticBezierCommand);
    Z: (() => CloseCommand);
} = ...

Type declaration

Generated using TypeDoc