main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 2 weeks ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
713 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | import { TransformableSVG } from "./TransformableSVG";
|
---|
| 2 | import { SVGCommand, TransformFunction } from "./types";
|
---|
| 3 | export 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.