Files
infocom-systems-design/node_modules/roughjs/bin/fillers/hatch-filler.d.ts
2025-10-03 22:27:28 +03:00

7 lines
265 B
TypeScript

import { HachureFiller } from './hachure-filler';
import { ResolvedOptions, OpSet } from '../core';
import { Point } from '../geometry';
export declare class HatchFiller extends HachureFiller {
fillPolygons(polygonList: Point[][], o: ResolvedOptions): OpSet;
}