/// import { drawChamferRect } from './drawChamferRect'; import { drawFilletRect } from './drawFilletRect'; import { drawRegularPolygon } from './drawRegularPolygon'; import { drawRoundedPolygon } from './drawRoundedPolygon'; import { drawStar } from './drawStar'; import { drawTorus } from './drawTorus'; export interface IGraphicsExtras { drawTorus: typeof drawTorus; drawChamferRect: typeof drawChamferRect; drawFilletRect: typeof drawFilletRect; drawRegularPolygon: typeof drawRegularPolygon; drawRoundedPolygon: typeof drawRoundedPolygon; drawStar: typeof drawStar; }