⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.11
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
canvg
/
lib
/
View File Name :
PathParser.d.ts
import { SVGCommand, CommandM, CommandL, CommandH, CommandV, CommandZ, CommandQ, CommandT, CommandC, CommandS, CommandA } from 'svg-pathdata/lib/types'; import { SVGPathData } from 'svg-pathdata'; import Point from './Point'; export declare type CommandType = SVGCommand['type']; export declare type Command = { type: CommandType; } & Omit<CommandM, 'type'> & Omit<CommandL, 'type'> & Omit<CommandH, 'type'> & Omit<CommandV, 'type'> & Omit<CommandZ, 'type'> & Omit<CommandQ, 'type'> & Omit<CommandT, 'type'> & Omit<CommandC, 'type'> & Omit<CommandS, 'type'> & Omit<CommandA, 'type'>; export default class PathParser extends SVGPathData { control: Point; start: Point; current: Point; command: Command; readonly commands: Command[]; private i; private previousCommand; private points; private angles; constructor(path: string); reset(): void; isEnd(): boolean; next(): Command; getPoint(xProp?: string, yProp?: string): Point; getAsControlPoint(xProp?: string, yProp?: string): Point; getAsCurrentPoint(xProp?: string, yProp?: string): Point; getReflectedControlPoint(): Point; makeAbsolute(point: Point): Point; addMarker(point: Point, from?: Point, priorTo?: Point): void; addMarkerAngle(point: Point, angle: number): void; getMarkerPoints(): Point[]; getMarkerAngles(): number[]; } //# sourceMappingURL=PathParser.d.ts.map