wgo
Version:
JavaScript library for game of Go
9 lines (8 loc) • 326 B
TypeScript
import { SVGBoardConfig, SVG_OBJECTS, SVG_GRID_MASK } from '../types';
import SVGMarkupDrawHandler from './SVGMarkupDrawHandler';
export default class Triangle extends SVGMarkupDrawHandler {
createElement(config: SVGBoardConfig): {
objects: SVGPolygonElement;
gridMask: SVGPolygonElement;
};
}