source: imaps-frontend/node_modules/svg-pathdata/lib/SVGPathDataParser.d.ts@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 713 bytes
Line 
1import { TransformableSVG } from "./TransformableSVG";
2import { SVGCommand, TransformFunction } from "./types";
3export declare class SVGPathDataParser extends TransformableSVG {
4 private curNumber;
5 private curCommandType;
6 private curCommandRelative;
7 private canParseCommandOrComma;
8 private curNumberHasExp;
9 private curNumberHasExpDigits;
10 private curNumberHasDecimal;
11 private curArgs;
12 constructor();
13 finish(commands?: SVGCommand[]): SVGCommand[];
14 parse(str: string, commands?: SVGCommand[]): SVGCommand[];
15 /**
16 * Return a wrapper around this parser which applies the transformation on parsed commands.
17 */
18 transform(transform: TransformFunction): this;
19}
Note: See TracBrowser for help on using the repository browser.