interfaces/path.ts
className |
className: |
Type : string
|
Defined in interfaces/path.ts:13
|
color |
color: |
Type : string
|
Defined in interfaces/path.ts:3
|
dashArray |
dashArray: |
Type : string
|
Defined in interfaces/path.ts:7
|
dashOffset |
dashOffset: |
Type : string
|
Defined in interfaces/path.ts:8
|
fill |
fill: |
Type : boolean
|
Defined in interfaces/path.ts:9
|
fillColor |
fillColor: |
Type : string
|
Defined in interfaces/path.ts:10
|
fillOpacity |
fillOpacity: |
Type : number
|
Defined in interfaces/path.ts:11
|
fillRule |
fillRule: |
Type : string
|
Defined in interfaces/path.ts:12
|
lineJoin |
lineJoin: |
Type : string
|
Defined in interfaces/path.ts:6
|
opacity |
opacity: |
Type : number
|
Defined in interfaces/path.ts:5
|
stroke |
stroke: |
Type : boolean
|
Defined in interfaces/path.ts:2
|
weight |
weight: |
Type : number
|
Defined in interfaces/path.ts:4
|
export interface Ipath {
stroke: boolean;
color: string;
weight: number;
opacity: number;
lineJoin: string;
dashArray: string;
dashOffset: string;
fill: boolean;
fillColor: string;
fillOpacity: number;
fillRule: string;
className: string;
}