Interface IDrawableShape

interface IDrawableShape {
    draw: ((config) => void);
    stopDrawing: (() => void);
}

Implemented by

Properties

Properties

draw: ((config) => void)

Type declaration

    • (config): void
    • Parameters

      • config: Partial<ShapeConfig>

      Returns void

stopDrawing: (() => void)

Type declaration

    • (): void
    • Returns void