kicadts 0.0.34 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +407 -19
- package/dist/index.js +1272 -180
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2818,6 +2818,7 @@ interface FpTextConstructorParams {
|
|
|
2818
2818
|
type?: FpTextType;
|
|
2819
2819
|
text?: string;
|
|
2820
2820
|
position?: AtInput | Xy;
|
|
2821
|
+
locked?: boolean;
|
|
2821
2822
|
unlocked?: boolean;
|
|
2822
2823
|
hidden?: boolean;
|
|
2823
2824
|
layer?: Layer | string | string[];
|
|
@@ -2831,6 +2832,7 @@ declare class FpText extends SxClass {
|
|
|
2831
2832
|
private _type?;
|
|
2832
2833
|
private _text;
|
|
2833
2834
|
private _sxPosition?;
|
|
2835
|
+
private _sxLocked?;
|
|
2834
2836
|
private _sxUnlocked?;
|
|
2835
2837
|
private _sxHide?;
|
|
2836
2838
|
private _sxLayer?;
|
|
@@ -2845,6 +2847,8 @@ declare class FpText extends SxClass {
|
|
|
2845
2847
|
set text(value: string);
|
|
2846
2848
|
get position(): At | Xy | undefined;
|
|
2847
2849
|
set position(value: AtInput | Xy | undefined);
|
|
2850
|
+
get locked(): boolean;
|
|
2851
|
+
set locked(value: boolean);
|
|
2848
2852
|
get unlocked(): boolean;
|
|
2849
2853
|
set unlocked(value: boolean);
|
|
2850
2854
|
get hidden(): boolean;
|
|
@@ -3454,6 +3458,7 @@ declare class FootprintModel extends SxClass {
|
|
|
3454
3458
|
private _offset?;
|
|
3455
3459
|
private _scale?;
|
|
3456
3460
|
private _rotate?;
|
|
3461
|
+
private _opacity?;
|
|
3457
3462
|
private _hide;
|
|
3458
3463
|
constructor(path: string);
|
|
3459
3464
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): FootprintModel;
|
|
@@ -3465,6 +3470,8 @@ declare class FootprintModel extends SxClass {
|
|
|
3465
3470
|
set scale(value: ModelVector | undefined);
|
|
3466
3471
|
get rotate(): ModelVector | undefined;
|
|
3467
3472
|
set rotate(value: ModelVector | undefined);
|
|
3473
|
+
get opacity(): number | undefined;
|
|
3474
|
+
set opacity(value: number | undefined);
|
|
3468
3475
|
get hide(): boolean;
|
|
3469
3476
|
set hide(value: boolean);
|
|
3470
3477
|
getChildren(): SxClass[];
|
|
@@ -3621,15 +3628,390 @@ declare class FootprintUnits extends SxClass {
|
|
|
3621
3628
|
getChildren(): SxClass[];
|
|
3622
3629
|
}
|
|
3623
3630
|
|
|
3631
|
+
declare class Layers extends SxClass {
|
|
3632
|
+
static token: string;
|
|
3633
|
+
token: string;
|
|
3634
|
+
private _names;
|
|
3635
|
+
constructor(names?: Array<string | number>);
|
|
3636
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Layers;
|
|
3637
|
+
get names(): string[];
|
|
3638
|
+
set names(values: Array<string | number>);
|
|
3639
|
+
getString(): string;
|
|
3640
|
+
}
|
|
3641
|
+
|
|
3642
|
+
declare class ZoneAttrTeardropType extends SxPrimitiveString {
|
|
3643
|
+
static token: string;
|
|
3644
|
+
static parentToken: string;
|
|
3645
|
+
token: string;
|
|
3646
|
+
}
|
|
3647
|
+
|
|
3648
|
+
declare class ZoneAttrTeardrop extends SxClass {
|
|
3649
|
+
static token: string;
|
|
3650
|
+
static parentToken: string;
|
|
3651
|
+
token: string;
|
|
3652
|
+
private _sxType?;
|
|
3653
|
+
constructor(type?: ZoneAttrTeardropType | string);
|
|
3654
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneAttrTeardrop;
|
|
3655
|
+
get type(): string | undefined;
|
|
3656
|
+
set type(value: ZoneAttrTeardropType | string | undefined);
|
|
3657
|
+
getChildren(): SxClass[];
|
|
3658
|
+
}
|
|
3659
|
+
|
|
3660
|
+
declare class ZoneAttr extends SxClass {
|
|
3661
|
+
static token: string;
|
|
3662
|
+
static parentToken: string;
|
|
3663
|
+
token: string;
|
|
3664
|
+
private _sxTeardrop?;
|
|
3665
|
+
constructor(params?: {
|
|
3666
|
+
teardrop?: ZoneAttrTeardrop;
|
|
3667
|
+
});
|
|
3668
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneAttr;
|
|
3669
|
+
get teardrop(): ZoneAttrTeardrop | undefined;
|
|
3670
|
+
set teardrop(value: ZoneAttrTeardrop | undefined);
|
|
3671
|
+
getChildren(): SxClass[];
|
|
3672
|
+
}
|
|
3673
|
+
|
|
3674
|
+
declare class ZoneConnectPadsClearance extends SxPrimitiveNumber {
|
|
3675
|
+
static token: string;
|
|
3676
|
+
static parentToken: string;
|
|
3677
|
+
token: string;
|
|
3678
|
+
}
|
|
3679
|
+
|
|
3680
|
+
declare class ZoneConnectPads extends SxClass {
|
|
3681
|
+
static token: string;
|
|
3682
|
+
static parentToken: string;
|
|
3683
|
+
token: string;
|
|
3684
|
+
private _enabled?;
|
|
3685
|
+
private _sxClearance?;
|
|
3686
|
+
constructor(params?: {
|
|
3687
|
+
enabled?: boolean;
|
|
3688
|
+
clearance?: number;
|
|
3689
|
+
});
|
|
3690
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneConnectPads;
|
|
3691
|
+
get enabled(): boolean | undefined;
|
|
3692
|
+
set enabled(value: boolean | undefined);
|
|
3693
|
+
get clearance(): number | undefined;
|
|
3694
|
+
set clearance(value: ZoneConnectPadsClearance | number | undefined);
|
|
3695
|
+
getChildren(): SxClass[];
|
|
3696
|
+
getString(): string;
|
|
3697
|
+
}
|
|
3698
|
+
|
|
3699
|
+
declare class ZoneFillIslandAreaMin extends SxPrimitiveNumber {
|
|
3700
|
+
static token: string;
|
|
3701
|
+
static parentToken: string;
|
|
3702
|
+
token: string;
|
|
3703
|
+
}
|
|
3704
|
+
|
|
3705
|
+
declare class ZoneFillIslandRemovalMode extends SxPrimitiveNumber {
|
|
3706
|
+
static token: string;
|
|
3707
|
+
static parentToken: string;
|
|
3708
|
+
token: string;
|
|
3709
|
+
}
|
|
3710
|
+
|
|
3711
|
+
declare class ZoneFillRadius extends SxPrimitiveNumber {
|
|
3712
|
+
static token: string;
|
|
3713
|
+
static parentToken: string;
|
|
3714
|
+
token: string;
|
|
3715
|
+
}
|
|
3716
|
+
|
|
3717
|
+
declare class ZoneFillSmoothing extends SxPrimitiveString {
|
|
3718
|
+
static token: string;
|
|
3719
|
+
static parentToken: string;
|
|
3720
|
+
token: string;
|
|
3721
|
+
}
|
|
3722
|
+
|
|
3723
|
+
declare class ZoneFillThermalBridgeWidth extends SxPrimitiveNumber {
|
|
3724
|
+
static token: string;
|
|
3725
|
+
static parentToken: string;
|
|
3726
|
+
token: string;
|
|
3727
|
+
}
|
|
3728
|
+
|
|
3729
|
+
declare class ZoneFillThermalGap extends SxPrimitiveNumber {
|
|
3730
|
+
static token: string;
|
|
3731
|
+
static parentToken: string;
|
|
3732
|
+
token: string;
|
|
3733
|
+
}
|
|
3734
|
+
|
|
3735
|
+
declare class ZoneFill extends SxClass {
|
|
3736
|
+
static token: string;
|
|
3737
|
+
static parentToken: string;
|
|
3738
|
+
token: string;
|
|
3739
|
+
private _filled?;
|
|
3740
|
+
private _sxThermalGap?;
|
|
3741
|
+
private _sxThermalBridgeWidth?;
|
|
3742
|
+
private _sxSmoothing?;
|
|
3743
|
+
private _sxRadius?;
|
|
3744
|
+
private _sxIslandRemovalMode?;
|
|
3745
|
+
private _sxIslandAreaMin?;
|
|
3746
|
+
constructor(params?: {
|
|
3747
|
+
filled?: boolean;
|
|
3748
|
+
thermalGap?: number;
|
|
3749
|
+
thermalBridgeWidth?: number;
|
|
3750
|
+
smoothing?: string;
|
|
3751
|
+
radius?: number;
|
|
3752
|
+
islandRemovalMode?: number;
|
|
3753
|
+
islandAreaMin?: number;
|
|
3754
|
+
});
|
|
3755
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneFill;
|
|
3756
|
+
get filled(): boolean | undefined;
|
|
3757
|
+
set filled(value: boolean | undefined);
|
|
3758
|
+
get thermalGap(): number | undefined;
|
|
3759
|
+
set thermalGap(value: ZoneFillThermalGap | number | undefined);
|
|
3760
|
+
get thermalBridgeWidth(): number | undefined;
|
|
3761
|
+
set thermalBridgeWidth(value: ZoneFillThermalBridgeWidth | number | undefined);
|
|
3762
|
+
get smoothing(): string | undefined;
|
|
3763
|
+
set smoothing(value: ZoneFillSmoothing | string | undefined);
|
|
3764
|
+
get radius(): number | undefined;
|
|
3765
|
+
set radius(value: ZoneFillRadius | number | undefined);
|
|
3766
|
+
get islandRemovalMode(): number | undefined;
|
|
3767
|
+
set islandRemovalMode(value: ZoneFillIslandRemovalMode | number | undefined);
|
|
3768
|
+
get islandAreaMin(): number | undefined;
|
|
3769
|
+
set islandAreaMin(value: ZoneFillIslandAreaMin | number | undefined);
|
|
3770
|
+
getChildren(): SxClass[];
|
|
3771
|
+
getString(): string;
|
|
3772
|
+
}
|
|
3773
|
+
|
|
3774
|
+
declare class ZoneFilledAreasThickness extends SxPrimitiveBoolean {
|
|
3775
|
+
static token: string;
|
|
3776
|
+
static parentToken: string;
|
|
3777
|
+
token: string;
|
|
3778
|
+
}
|
|
3779
|
+
|
|
3780
|
+
declare class ZoneFilledPolygon extends SxClass {
|
|
3781
|
+
static token: string;
|
|
3782
|
+
static parentToken: string;
|
|
3783
|
+
token: string;
|
|
3784
|
+
private _sxLayer?;
|
|
3785
|
+
private _sxPts?;
|
|
3786
|
+
constructor(params?: {
|
|
3787
|
+
layer?: Layer;
|
|
3788
|
+
pts?: Pts;
|
|
3789
|
+
});
|
|
3790
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneFilledPolygon;
|
|
3791
|
+
get layer(): Layer | undefined;
|
|
3792
|
+
set layer(value: Layer | undefined);
|
|
3793
|
+
get pts(): Pts | undefined;
|
|
3794
|
+
set pts(value: Pts | undefined);
|
|
3795
|
+
getChildren(): SxClass[];
|
|
3796
|
+
}
|
|
3797
|
+
|
|
3798
|
+
declare class ZoneHatch extends SxClass {
|
|
3799
|
+
style: string;
|
|
3800
|
+
pitch: number;
|
|
3801
|
+
static token: string;
|
|
3802
|
+
static parentToken: string;
|
|
3803
|
+
token: string;
|
|
3804
|
+
constructor(style: string, pitch: number);
|
|
3805
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneHatch;
|
|
3806
|
+
getString(): string;
|
|
3807
|
+
}
|
|
3808
|
+
|
|
3809
|
+
declare class ZoneKeepoutCopperpour extends SxPrimitiveString {
|
|
3810
|
+
static token: string;
|
|
3811
|
+
static parentToken: string;
|
|
3812
|
+
token: string;
|
|
3813
|
+
}
|
|
3814
|
+
|
|
3815
|
+
declare class ZoneKeepoutFootprints extends SxPrimitiveString {
|
|
3816
|
+
static token: string;
|
|
3817
|
+
static parentToken: string;
|
|
3818
|
+
token: string;
|
|
3819
|
+
}
|
|
3820
|
+
|
|
3821
|
+
declare class ZoneKeepoutPads extends SxPrimitiveString {
|
|
3822
|
+
static token: string;
|
|
3823
|
+
static parentToken: string;
|
|
3824
|
+
token: string;
|
|
3825
|
+
}
|
|
3826
|
+
|
|
3827
|
+
declare class ZoneKeepoutTracks extends SxPrimitiveString {
|
|
3828
|
+
static token: string;
|
|
3829
|
+
static parentToken: string;
|
|
3830
|
+
token: string;
|
|
3831
|
+
}
|
|
3832
|
+
|
|
3833
|
+
declare class ZoneKeepoutVias extends SxPrimitiveString {
|
|
3834
|
+
static token: string;
|
|
3835
|
+
static parentToken: string;
|
|
3836
|
+
token: string;
|
|
3837
|
+
}
|
|
3838
|
+
|
|
3839
|
+
declare class ZoneKeepout extends SxClass {
|
|
3840
|
+
static token: string;
|
|
3841
|
+
static parentToken: string;
|
|
3842
|
+
token: string;
|
|
3843
|
+
private _sxTracks?;
|
|
3844
|
+
private _sxVias?;
|
|
3845
|
+
private _sxPads?;
|
|
3846
|
+
private _sxCopperpour?;
|
|
3847
|
+
private _sxFootprints?;
|
|
3848
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneKeepout;
|
|
3849
|
+
get tracks(): string | undefined;
|
|
3850
|
+
set tracks(value: ZoneKeepoutTracks | string | undefined);
|
|
3851
|
+
get vias(): string | undefined;
|
|
3852
|
+
set vias(value: ZoneKeepoutVias | string | undefined);
|
|
3853
|
+
get pads(): string | undefined;
|
|
3854
|
+
set pads(value: ZoneKeepoutPads | string | undefined);
|
|
3855
|
+
get copperpour(): string | undefined;
|
|
3856
|
+
set copperpour(value: ZoneKeepoutCopperpour | string | undefined);
|
|
3857
|
+
get footprints(): string | undefined;
|
|
3858
|
+
set footprints(value: ZoneKeepoutFootprints | string | undefined);
|
|
3859
|
+
getChildren(): SxClass[];
|
|
3860
|
+
}
|
|
3861
|
+
|
|
3862
|
+
declare class ZoneMinThickness extends SxPrimitiveNumber {
|
|
3863
|
+
static token: string;
|
|
3864
|
+
static parentToken: string;
|
|
3865
|
+
token: string;
|
|
3866
|
+
}
|
|
3867
|
+
|
|
3868
|
+
declare class ZoneName extends SxPrimitiveString {
|
|
3869
|
+
static token: string;
|
|
3870
|
+
static parentToken: string;
|
|
3871
|
+
token: string;
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3874
|
+
declare class ZoneNet extends SxClass {
|
|
3875
|
+
value: number | string;
|
|
3876
|
+
static token: string;
|
|
3877
|
+
static parentToken: string;
|
|
3878
|
+
token: string;
|
|
3879
|
+
constructor(value: number | string);
|
|
3880
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZoneNet;
|
|
3881
|
+
getString(): string;
|
|
3882
|
+
}
|
|
3883
|
+
|
|
3884
|
+
declare class ZoneNetName extends SxPrimitiveString {
|
|
3885
|
+
static token: string;
|
|
3886
|
+
static parentToken: string;
|
|
3887
|
+
token: string;
|
|
3888
|
+
}
|
|
3889
|
+
|
|
3890
|
+
declare class ZonePlacementEnabled extends SxPrimitiveBoolean {
|
|
3891
|
+
static token: string;
|
|
3892
|
+
static parentToken: string;
|
|
3893
|
+
token: string;
|
|
3894
|
+
}
|
|
3895
|
+
|
|
3896
|
+
declare class ZonePlacementSheetname extends SxPrimitiveString {
|
|
3897
|
+
static token: string;
|
|
3898
|
+
static parentToken: string;
|
|
3899
|
+
token: string;
|
|
3900
|
+
}
|
|
3901
|
+
|
|
3902
|
+
declare class ZonePlacement extends SxClass {
|
|
3903
|
+
static token: string;
|
|
3904
|
+
static parentToken: string;
|
|
3905
|
+
token: string;
|
|
3906
|
+
private _sxEnabled?;
|
|
3907
|
+
private _sxSheetname?;
|
|
3908
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZonePlacement;
|
|
3909
|
+
get enabled(): boolean | undefined;
|
|
3910
|
+
set enabled(value: ZonePlacementEnabled | boolean | undefined);
|
|
3911
|
+
get sheetname(): string | undefined;
|
|
3912
|
+
set sheetname(value: ZonePlacementSheetname | string | undefined);
|
|
3913
|
+
getChildren(): SxClass[];
|
|
3914
|
+
}
|
|
3915
|
+
|
|
3916
|
+
declare class ZonePolygon extends SxClass {
|
|
3917
|
+
static token: string;
|
|
3918
|
+
static parentToken: string;
|
|
3919
|
+
token: string;
|
|
3920
|
+
private _sxPts?;
|
|
3921
|
+
constructor(pts?: Pts);
|
|
3922
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): ZonePolygon;
|
|
3923
|
+
get pts(): Pts | undefined;
|
|
3924
|
+
set pts(value: Pts | undefined);
|
|
3925
|
+
getChildren(): SxClass[];
|
|
3926
|
+
}
|
|
3927
|
+
|
|
3928
|
+
declare class ZonePriority extends SxPrimitiveNumber {
|
|
3929
|
+
static token: string;
|
|
3930
|
+
static parentToken: string;
|
|
3931
|
+
token: string;
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
interface ZoneConstructorParams {
|
|
3935
|
+
net?: ZoneNet | number | string;
|
|
3936
|
+
netName?: ZoneNetName | string;
|
|
3937
|
+
layer?: Layer | string | string[];
|
|
3938
|
+
layers?: Layers | string[];
|
|
3939
|
+
tstamp?: Tstamp | string;
|
|
3940
|
+
uuid?: Uuid | string;
|
|
3941
|
+
name?: ZoneName | string;
|
|
3942
|
+
hatch?: ZoneHatch;
|
|
3943
|
+
priority?: ZonePriority | number;
|
|
3944
|
+
attr?: ZoneAttr;
|
|
3945
|
+
connectPads?: ZoneConnectPads;
|
|
3946
|
+
minThickness?: ZoneMinThickness | number;
|
|
3947
|
+
filledAreasThickness?: ZoneFilledAreasThickness | boolean;
|
|
3948
|
+
keepout?: ZoneKeepout;
|
|
3949
|
+
placement?: ZonePlacement;
|
|
3950
|
+
fill?: ZoneFill;
|
|
3951
|
+
polygons?: ZonePolygon[];
|
|
3952
|
+
filledPolygons?: ZoneFilledPolygon[];
|
|
3953
|
+
}
|
|
3624
3954
|
declare class Zone extends SxClass {
|
|
3625
3955
|
static token: string;
|
|
3626
3956
|
token: string;
|
|
3627
|
-
private
|
|
3957
|
+
private _sxNet?;
|
|
3958
|
+
private _sxNetName?;
|
|
3959
|
+
private _sxLayer?;
|
|
3960
|
+
private _sxLayers?;
|
|
3961
|
+
private _sxTstamp?;
|
|
3962
|
+
private _sxUuid?;
|
|
3963
|
+
private _sxName?;
|
|
3964
|
+
private _sxHatch?;
|
|
3965
|
+
private _sxPriority?;
|
|
3966
|
+
private _sxAttr?;
|
|
3967
|
+
private _sxConnectPads?;
|
|
3968
|
+
private _sxMinThickness?;
|
|
3969
|
+
private _sxFilledAreasThickness?;
|
|
3970
|
+
private _sxKeepout?;
|
|
3971
|
+
private _sxPlacement?;
|
|
3972
|
+
private _sxFill?;
|
|
3973
|
+
private _polygons;
|
|
3974
|
+
private _filledPolygons;
|
|
3975
|
+
constructor(params?: ZoneConstructorParams);
|
|
3628
3976
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Zone;
|
|
3629
|
-
get
|
|
3630
|
-
set
|
|
3977
|
+
get net(): number | string | undefined;
|
|
3978
|
+
set net(value: ZoneNet | number | string | undefined);
|
|
3979
|
+
get netClass(): ZoneNet | undefined;
|
|
3980
|
+
get netName(): string | undefined;
|
|
3981
|
+
set netName(value: ZoneNetName | string | undefined);
|
|
3982
|
+
get layer(): Layer | undefined;
|
|
3983
|
+
set layer(value: Layer | string | string[] | undefined);
|
|
3984
|
+
get layers(): Layers | undefined;
|
|
3985
|
+
set layers(value: Layers | string[] | undefined);
|
|
3986
|
+
get tstamp(): Tstamp | undefined;
|
|
3987
|
+
set tstamp(value: Tstamp | string | undefined);
|
|
3988
|
+
get uuid(): Uuid | undefined;
|
|
3989
|
+
set uuid(value: Uuid | string | undefined);
|
|
3990
|
+
get name(): string | undefined;
|
|
3991
|
+
set name(value: ZoneName | string | undefined);
|
|
3992
|
+
get hatch(): ZoneHatch | undefined;
|
|
3993
|
+
set hatch(value: ZoneHatch | undefined);
|
|
3994
|
+
get priority(): number | undefined;
|
|
3995
|
+
set priority(value: ZonePriority | number | undefined);
|
|
3996
|
+
get attr(): ZoneAttr | undefined;
|
|
3997
|
+
set attr(value: ZoneAttr | undefined);
|
|
3998
|
+
get connectPads(): ZoneConnectPads | undefined;
|
|
3999
|
+
set connectPads(value: ZoneConnectPads | undefined);
|
|
4000
|
+
get minThickness(): number | undefined;
|
|
4001
|
+
set minThickness(value: ZoneMinThickness | number | undefined);
|
|
4002
|
+
get filledAreasThickness(): boolean | undefined;
|
|
4003
|
+
set filledAreasThickness(value: ZoneFilledAreasThickness | boolean | undefined);
|
|
4004
|
+
get keepout(): ZoneKeepout | undefined;
|
|
4005
|
+
set keepout(value: ZoneKeepout | undefined);
|
|
4006
|
+
get placement(): ZonePlacement | undefined;
|
|
4007
|
+
set placement(value: ZonePlacement | undefined);
|
|
4008
|
+
get fill(): ZoneFill | undefined;
|
|
4009
|
+
set fill(value: ZoneFill | undefined);
|
|
4010
|
+
get polygons(): ZonePolygon[];
|
|
4011
|
+
set polygons(value: ZonePolygon[]);
|
|
4012
|
+
get filledPolygons(): ZoneFilledPolygon[];
|
|
4013
|
+
set filledPolygons(value: ZoneFilledPolygon[]);
|
|
3631
4014
|
getChildren(): SxClass[];
|
|
3632
|
-
getString(): string;
|
|
3633
4015
|
}
|
|
3634
4016
|
|
|
3635
4017
|
interface FootprintConstructorParams {
|
|
@@ -3860,6 +4242,7 @@ interface GrArcConstructorParams {
|
|
|
3860
4242
|
stroke?: Stroke;
|
|
3861
4243
|
tstamp?: Tstamp | string;
|
|
3862
4244
|
uuid?: Uuid | string;
|
|
4245
|
+
locked?: boolean;
|
|
3863
4246
|
}
|
|
3864
4247
|
declare class GrArc extends SxClass {
|
|
3865
4248
|
static token: string;
|
|
@@ -3872,6 +4255,7 @@ declare class GrArc extends SxClass {
|
|
|
3872
4255
|
private _sxStroke?;
|
|
3873
4256
|
private _sxTstamp?;
|
|
3874
4257
|
private _sxUuid?;
|
|
4258
|
+
private _sxLocked?;
|
|
3875
4259
|
constructor(params?: GrArcConstructorParams);
|
|
3876
4260
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrArc;
|
|
3877
4261
|
get start(): GrArcStart | undefined;
|
|
@@ -3895,6 +4279,8 @@ declare class GrArc extends SxClass {
|
|
|
3895
4279
|
set tstamp(value: Tstamp | string | undefined);
|
|
3896
4280
|
get uuid(): Uuid | undefined;
|
|
3897
4281
|
set uuid(value: Uuid | string | undefined);
|
|
4282
|
+
get locked(): boolean;
|
|
4283
|
+
set locked(value: boolean);
|
|
3898
4284
|
getChildren(): SxClass[];
|
|
3899
4285
|
private normalizeStart;
|
|
3900
4286
|
private normalizeMid;
|
|
@@ -4143,6 +4529,15 @@ declare class GrLineLocked extends SxPrimitiveBoolean {
|
|
|
4143
4529
|
getString(): string;
|
|
4144
4530
|
}
|
|
4145
4531
|
|
|
4532
|
+
declare class GrArcLocked extends SxPrimitiveBoolean {
|
|
4533
|
+
static token: string;
|
|
4534
|
+
static parentToken: string;
|
|
4535
|
+
token: string;
|
|
4536
|
+
constructor(value: boolean);
|
|
4537
|
+
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): GrArcLocked;
|
|
4538
|
+
getString(): string;
|
|
4539
|
+
}
|
|
4540
|
+
|
|
4146
4541
|
interface GrRectConstructorParams {
|
|
4147
4542
|
start?: GrRectStart | {
|
|
4148
4543
|
x: number;
|
|
@@ -4548,7 +4943,8 @@ interface PcbArcConstructorParams {
|
|
|
4548
4943
|
end?: PcbArcPoint;
|
|
4549
4944
|
width?: number | Width;
|
|
4550
4945
|
layer?: string | Layer;
|
|
4551
|
-
net?: number;
|
|
4946
|
+
net?: number | string;
|
|
4947
|
+
locked?: boolean;
|
|
4552
4948
|
uuid?: string | Uuid;
|
|
4553
4949
|
}
|
|
4554
4950
|
declare class PcbArc extends SxClass {
|
|
@@ -4561,6 +4957,7 @@ declare class PcbArc extends SxClass {
|
|
|
4561
4957
|
private _sxWidth?;
|
|
4562
4958
|
private _sxLayer?;
|
|
4563
4959
|
private _net?;
|
|
4960
|
+
private _locked;
|
|
4564
4961
|
private _sxUuid?;
|
|
4565
4962
|
constructor(params?: PcbArcConstructorParams);
|
|
4566
4963
|
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): PcbArc;
|
|
@@ -4574,8 +4971,10 @@ declare class PcbArc extends SxClass {
|
|
|
4574
4971
|
set width(value: number | Width | undefined);
|
|
4575
4972
|
get layer(): Layer | undefined;
|
|
4576
4973
|
set layer(value: string | Layer | undefined);
|
|
4577
|
-
get net(): number | undefined;
|
|
4578
|
-
set net(value: number | undefined);
|
|
4974
|
+
get net(): number | string | undefined;
|
|
4975
|
+
set net(value: number | string | undefined);
|
|
4976
|
+
get locked(): boolean;
|
|
4977
|
+
set locked(value: boolean);
|
|
4579
4978
|
get uuid(): Uuid | undefined;
|
|
4580
4979
|
set uuid(value: string | Uuid | undefined);
|
|
4581
4980
|
getChildren(): SxClass[];
|
|
@@ -4723,17 +5122,6 @@ declare class SegmentLocked extends SxPrimitiveBoolean {
|
|
|
4723
5122
|
getString(): string;
|
|
4724
5123
|
}
|
|
4725
5124
|
|
|
4726
|
-
declare class Layers extends SxClass {
|
|
4727
|
-
static token: string;
|
|
4728
|
-
token: string;
|
|
4729
|
-
private _names;
|
|
4730
|
-
constructor(names?: Array<string | number>);
|
|
4731
|
-
static fromSexprPrimitives(primitiveSexprs: PrimitiveSExpr[]): Layers;
|
|
4732
|
-
get names(): string[];
|
|
4733
|
-
set names(values: Array<string | number>);
|
|
4734
|
-
getString(): string;
|
|
4735
|
-
}
|
|
4736
|
-
|
|
4737
5125
|
declare class FpPolyLocked extends SxPrimitiveBoolean {
|
|
4738
5126
|
static token: string;
|
|
4739
5127
|
static parentToken: string;
|
|
@@ -5932,4 +6320,4 @@ declare const parseKicadSch: (sexpr: string) => KicadSch;
|
|
|
5932
6320
|
declare const parseKicadPcb: (sexpr: string) => KicadPcb;
|
|
5933
6321
|
declare const parseKicadMod: (sexpr: string) => Footprint;
|
|
5934
6322
|
|
|
5935
|
-
export { At, type AtInput, Back, Bus, type BusConstructorParams, BusEntry, type BusEntryConstructorParams, BusEntrySize, Capping, Color, Covering, Dimension, DimensionFormat, DimensionStyle, Dnp, EmbeddedFile, EmbeddedFileChecksum, type EmbeddedFileConstructorParams, EmbeddedFileData, EmbeddedFileName, EmbeddedFileType, EmbeddedFiles, type EmbeddedFilesConstructorParams, EmbeddedFonts, ExcludeFromSim, FieldsAutoplaced, Filling, Footprint, FootprintAttr, FootprintAutoplaceCost180, FootprintAutoplaceCost90, FootprintClearance, type FootprintConstructorParams, FootprintDescr, FootprintDuplicatePadNumbersAreJumpers, FootprintGenerator, FootprintGeneratorVersion, FootprintLocked, FootprintModel, FootprintNetTiePadGroups, FootprintPad, type FootprintPadConstructorParams, FootprintPath, FootprintPlaced, FootprintPoint, FootprintPointSize, FootprintPrivateLayers, FootprintSheetfile, FootprintSheetname, FootprintSolderMaskMargin, FootprintSolderPasteMargin, FootprintSolderPasteRatio, FootprintTags, FootprintTedit, FootprintThermalGap, FootprintThermalWidth, FootprintUnit, FootprintUnitName, FootprintUnitPins, FootprintUnits, FootprintVersion, FootprintZoneConnect, FpArc, type FpArcConstructorParams, FpArcEnd, FpArcMid, FpArcStart, FpCircle, FpCircleCenter, type FpCircleConstructorParams, FpCircleEnd, FpCircleFill, FpCircleNet, FpLine, type FpLineConstructorParams, FpLineEnd, FpLineNet, FpLineStart, FpPoly, type FpPolyConstructorParams, FpPolyFill, FpPolyLocked, FpRect, type FpRectConstructorParams, FpRectEnd, FpRectFill, FpRectNet, FpRectStart, FpText, FpTextBox, FpTextBoxAngle, type FpTextBoxConstructorParams, FpTextBoxEnd, FpTextBoxStart, type FpTextConstructorParams, type FpTextType, Front, Generated, GlobalLabel, type GlobalLabelConstructorParams, type GlobalLabelShape, GrArc, type GrArcConstructorParams, GrArcEnd, GrArcMid, type GrArcPoint, GrArcStart, GrCircle, GrCircleCenter, type GrCircleConstructorParams, GrCircleEnd, GrCircleLocked, type GrCirclePoint, GrCurve, type GrCurveConstructorParams, GrLine, GrLineAngle, type GrLineConstructorParams, GrLineEnd, GrLineLocked, type GrLinePoint, GrLineStart, GrPoly, type GrPolyConstructorParams, GrPolyFill, GrPolyNet, GrRect, type GrRectConstructorParams, GrRectEnd, GrRectFill, GrRectLocked, GrRectStart, GrText, type GrTextConstructorParams, type GrTextPosition, GrTextRenderCache, GrTextRenderCachePolygon, Group, type GroupConstructorParams, GroupLocked, GroupMembers, Image, type ImageConstructorParams, ImageData, ImageScale, InBom, InPosFiles, Junction, type JunctionConstructorParams, JunctionDiameter, KicadPcb, type KicadPcbConstructorParams, KicadSch, type KicadSchConstructorParams, KicadSchGenerator, KicadSchGeneratorVersion, KicadSchVersion, KicadSymbolLib, type KicadSymbolLibConstructorParams, KicadSymbolLibGenerator, KicadSymbolLibGeneratorVersion, KicadSymbolLibVersion, Label, type LabelConstructorParams, Layer, Layers, LibSymbols, Mirror, type ModelVector, NoConnect, type NoConnectConstructorParams, OnBoard, PadChamfer, PadChamferRatio, PadClearance, PadDieLength, PadDrill, PadDrillOffset, PadLayers, type PadLayersInput, PadNet, PadOptions, type PadOptionsAnchorShape, type PadOptionsClearanceType, PadPinFunction, PadPinType, PadPrimitiveGrArc, type PadPrimitiveGrArcConstructorParams, PadPrimitiveGrCircle, type PadPrimitiveGrCircleConstructorParams, PadPrimitiveGrCircleFill, PadPrimitiveGrLine, PadPrimitiveGrPoly, PadPrimitives, PadProperty, PadRectDelta, PadRoundrectRratio, PadSize, type PadSizeInput, PadSolderMaskMargin, PadSolderPasteMargin, PadSolderPasteMarginRatio, PadTeardrops, PadThermalBridgeAngle, PadThermalGap, PadThermalWidth, PadZoneConnect, PadZoneLayerConnections, Paper, PcbArc, type PcbArcConstructorParams, type PcbArcPoint, PcbGeneral, PcbGeneralLegacyTeardrops, PcbGeneralThickness, PcbGenerator, PcbGeneratorVersion, PcbLayerDefinition, PcbLayers, PcbNet, PcbPlotParams, PcbVersion, PlotParamCreateGerberJobFile, PlotParamCrossoutDnpOnFab, PlotParamDashedLineDashRatio, PlotParamDashedLineGapRatio, PlotParamDisableApertMacros, PlotParamDrillShape, PlotParamDxfImperialUnits, PlotParamDxfPolygonMode, PlotParamDxfUsePcbnewFont, PlotParamExcludeEdgeLayer, PlotParamHideDnpOnFab, PlotParamHpglPenDiameter, PlotParamHpglPenNumber, PlotParamHpglPenOverlay, PlotParamHpglPenSpeed, PlotParamLayerSelection, PlotParamLineWidth, PlotParamMirror, PlotParamMode, PlotParamOutputDirectory, PlotParamOutputFormat, PlotParamPadOnSilk, PlotParamPdfBackFpPropertyPopups, PlotParamPdfFrontFpPropertyPopups, PlotParamPdfMetadata, PlotParamPdfSingleDocument, PlotParamPlotBlackAndWhite, PlotParamPlotFpText, PlotParamPlotFrameRef, PlotParamPlotInvisible, PlotParamPlotInvisibleText, PlotParamPlotOnAllLayers, PlotParamPlotOnAllLayersSelection, PlotParamPlotOtherText, PlotParamPlotPadNumbers, PlotParamPlotReference, PlotParamPlotValue, PlotParamProperty, PlotParamPsA4Output, PlotParamPsNegative, PlotParamScaleSelection, PlotParamSketchDnpOnFab, PlotParamSketchPadsOnFab, PlotParamSubtractMaskFromSilk, PlotParamSvgPrecision, PlotParamUseAuxOrigin, PlotParamUseGerberAdvancedAttributes, PlotParamUseGerberAttributes, PlotParamUseGerberExtensions, PlotParamViaOnMask, Plugging, Polyline, type PolylineConstructorParams, Property, type PropertyConstructorParams, PropertyDoNotAutoplace, PropertyHide, PropertyShowName, PropertyUnlocked, Pts, PtsArc, PtsArcEnd, PtsArcMid, PtsArcStart, type RGBAColor, RenderCache, SchematicPolyline, SchematicRectangle, SchematicSymbol, type SchematicSymbolConstructorParams, SchematicText, SchematicTextBox, type SchematicTextConstructorParams, Segment, type SegmentConstructorParams, SegmentEnd, SegmentLocked, SegmentNet, SegmentStart, Setup, SetupAllowSoldermaskBridgesInFootprints, SetupAuxAxisOrigin, SetupEdgeWidth, SetupGridOrigin, SetupLastTraceWidth, SetupModEdgeWidth, SetupModTextSize, SetupModTextWidth, SetupPadDrill, SetupPadSize, SetupPadToMaskClearance, SetupPadToPasteClearance, SetupPadToPasteClearanceRatio, SetupPadToPasteClearanceValues, SetupPcbTextSize, SetupPcbTextWidth, type SetupProperty, type SetupPropertyValues, SetupSegmentWidth, SetupSolderMaskMinWidth, SetupTenting, SetupTraceClearance, SetupTraceMin, SetupTraceWidth, SetupUviaDrill, SetupUviaMinDrill, SetupUviaMinSize, SetupUviaSize, SetupUviasAllowed, SetupViaDrill, SetupViaMinDrill, SetupViaMinSize, SetupViaSize, SetupVisibleElements, SetupZone45Only, SetupZoneClearance, Sheet, type SheetConstructorParams, SheetFill, SheetInstancePage, SheetInstancePath, SheetInstances, SheetInstancesForSheet, SheetInstancesProject, SheetInstancesRoot, SheetInstancesRootPage, SheetInstancesRootPath, SheetPin, type SheetPinElectricalType, SheetProperty, SheetSize, Stackup, StackupCastellatedPads, StackupCopperFinish, StackupDielectricConstraints, StackupEdgeConnector, StackupEdgePlating, StackupLayer, StackupLayerColor, StackupLayerEpsilonR, StackupLayerLossTangent, StackupLayerMaterial, StackupLayerThickness, StackupLayerType, type StandardPaperSize, Stroke, type StrokeProperty, StrokeType, type StrokeTypeString, SxClass, SymbolArc, SymbolArcEnd, SymbolArcFill, SymbolArcMid, SymbolArcStart, SymbolBodyStyle, SymbolBodyStyles, SymbolCircle, SymbolCircleCenter, SymbolCircleFill, SymbolCircleRadius, SymbolDuplicatePinNumbersAreJumpers, SymbolFillType, SymbolInstancePath, SymbolInstanceReference, SymbolInstanceUnit, SymbolInstances, SymbolInstancesProject, SymbolLibId, SymbolLibName, SymbolPin, SymbolPinLength, SymbolPinName, SymbolPinNames, SymbolPinNamesHide, SymbolPinNamesOffset, SymbolPinNumber, SymbolPinNumbers, SymbolPinNumbersHide, SymbolPolyline, SymbolPolylineFill, type SymbolPolylineFillLike, SymbolPower, SymbolProperty, SymbolPropertyId, SymbolRectangle, SymbolRectangleEnd, SymbolRectangleFill, SymbolRectangleStart, SymbolText, SymbolTextBox, SymbolUnit, Target, TextBoxFill, TextBoxSize, TextEffects, type TextEffectsConstructorParams, TextEffectsFont, TextEffectsFontBold, TextEffectsFontFace, TextEffectsFontItalic, TextEffectsFontLineSpacing, type TextEffectsFontProperty, TextEffectsFontSize, TextEffectsFontThickness, TextEffectsJustify, type TextEffectsProperty, TitleBlock, TitleBlockComment, TitleBlockCompany, type TitleBlockConstructorParams, TitleBlockDate, TitleBlockRevision, TitleBlockTitle, Tstamp, Unit, type UnitString, Uuid, Via, type ViaConstructorParams, ViaNet, Width, Wire, type WireConstructorParams, Xy, Zone, parseKicadMod, parseKicadPcb, parseKicadSch, parseKicadSexpr };
|
|
6323
|
+
export { At, type AtInput, Back, Bus, type BusConstructorParams, BusEntry, type BusEntryConstructorParams, BusEntrySize, Capping, Color, Covering, Dimension, DimensionFormat, DimensionStyle, Dnp, EmbeddedFile, EmbeddedFileChecksum, type EmbeddedFileConstructorParams, EmbeddedFileData, EmbeddedFileName, EmbeddedFileType, EmbeddedFiles, type EmbeddedFilesConstructorParams, EmbeddedFonts, ExcludeFromSim, FieldsAutoplaced, Filling, Footprint, FootprintAttr, FootprintAutoplaceCost180, FootprintAutoplaceCost90, FootprintClearance, type FootprintConstructorParams, FootprintDescr, FootprintDuplicatePadNumbersAreJumpers, FootprintGenerator, FootprintGeneratorVersion, FootprintLocked, FootprintModel, FootprintNetTiePadGroups, FootprintPad, type FootprintPadConstructorParams, FootprintPath, FootprintPlaced, FootprintPoint, FootprintPointSize, FootprintPrivateLayers, FootprintSheetfile, FootprintSheetname, FootprintSolderMaskMargin, FootprintSolderPasteMargin, FootprintSolderPasteRatio, FootprintTags, FootprintTedit, FootprintThermalGap, FootprintThermalWidth, FootprintUnit, FootprintUnitName, FootprintUnitPins, FootprintUnits, FootprintVersion, FootprintZoneConnect, FpArc, type FpArcConstructorParams, FpArcEnd, FpArcMid, FpArcStart, FpCircle, FpCircleCenter, type FpCircleConstructorParams, FpCircleEnd, FpCircleFill, FpCircleNet, FpLine, type FpLineConstructorParams, FpLineEnd, FpLineNet, FpLineStart, FpPoly, type FpPolyConstructorParams, FpPolyFill, FpPolyLocked, FpRect, type FpRectConstructorParams, FpRectEnd, FpRectFill, FpRectNet, FpRectStart, FpText, FpTextBox, FpTextBoxAngle, type FpTextBoxConstructorParams, FpTextBoxEnd, FpTextBoxStart, type FpTextConstructorParams, type FpTextType, Front, Generated, GlobalLabel, type GlobalLabelConstructorParams, type GlobalLabelShape, GrArc, type GrArcConstructorParams, GrArcEnd, GrArcLocked, GrArcMid, type GrArcPoint, GrArcStart, GrCircle, GrCircleCenter, type GrCircleConstructorParams, GrCircleEnd, GrCircleLocked, type GrCirclePoint, GrCurve, type GrCurveConstructorParams, GrLine, GrLineAngle, type GrLineConstructorParams, GrLineEnd, GrLineLocked, type GrLinePoint, GrLineStart, GrPoly, type GrPolyConstructorParams, GrPolyFill, GrPolyNet, GrRect, type GrRectConstructorParams, GrRectEnd, GrRectFill, GrRectLocked, GrRectStart, GrText, type GrTextConstructorParams, type GrTextPosition, GrTextRenderCache, GrTextRenderCachePolygon, Group, type GroupConstructorParams, GroupLocked, GroupMembers, Image, type ImageConstructorParams, ImageData, ImageScale, InBom, InPosFiles, Junction, type JunctionConstructorParams, JunctionDiameter, KicadPcb, type KicadPcbConstructorParams, KicadSch, type KicadSchConstructorParams, KicadSchGenerator, KicadSchGeneratorVersion, KicadSchVersion, KicadSymbolLib, type KicadSymbolLibConstructorParams, KicadSymbolLibGenerator, KicadSymbolLibGeneratorVersion, KicadSymbolLibVersion, Label, type LabelConstructorParams, Layer, Layers, LibSymbols, Mirror, type ModelVector, NoConnect, type NoConnectConstructorParams, OnBoard, PadChamfer, PadChamferRatio, PadClearance, PadDieLength, PadDrill, PadDrillOffset, PadLayers, type PadLayersInput, PadNet, PadOptions, type PadOptionsAnchorShape, type PadOptionsClearanceType, PadPinFunction, PadPinType, PadPrimitiveGrArc, type PadPrimitiveGrArcConstructorParams, PadPrimitiveGrCircle, type PadPrimitiveGrCircleConstructorParams, PadPrimitiveGrCircleFill, PadPrimitiveGrLine, PadPrimitiveGrPoly, PadPrimitives, PadProperty, PadRectDelta, PadRoundrectRratio, PadSize, type PadSizeInput, PadSolderMaskMargin, PadSolderPasteMargin, PadSolderPasteMarginRatio, PadTeardrops, PadThermalBridgeAngle, PadThermalGap, PadThermalWidth, PadZoneConnect, PadZoneLayerConnections, Paper, PcbArc, type PcbArcConstructorParams, type PcbArcPoint, PcbGeneral, PcbGeneralLegacyTeardrops, PcbGeneralThickness, PcbGenerator, PcbGeneratorVersion, PcbLayerDefinition, PcbLayers, PcbNet, PcbPlotParams, PcbVersion, PlotParamCreateGerberJobFile, PlotParamCrossoutDnpOnFab, PlotParamDashedLineDashRatio, PlotParamDashedLineGapRatio, PlotParamDisableApertMacros, PlotParamDrillShape, PlotParamDxfImperialUnits, PlotParamDxfPolygonMode, PlotParamDxfUsePcbnewFont, PlotParamExcludeEdgeLayer, PlotParamHideDnpOnFab, PlotParamHpglPenDiameter, PlotParamHpglPenNumber, PlotParamHpglPenOverlay, PlotParamHpglPenSpeed, PlotParamLayerSelection, PlotParamLineWidth, PlotParamMirror, PlotParamMode, PlotParamOutputDirectory, PlotParamOutputFormat, PlotParamPadOnSilk, PlotParamPdfBackFpPropertyPopups, PlotParamPdfFrontFpPropertyPopups, PlotParamPdfMetadata, PlotParamPdfSingleDocument, PlotParamPlotBlackAndWhite, PlotParamPlotFpText, PlotParamPlotFrameRef, PlotParamPlotInvisible, PlotParamPlotInvisibleText, PlotParamPlotOnAllLayers, PlotParamPlotOnAllLayersSelection, PlotParamPlotOtherText, PlotParamPlotPadNumbers, PlotParamPlotReference, PlotParamPlotValue, PlotParamProperty, PlotParamPsA4Output, PlotParamPsNegative, PlotParamScaleSelection, PlotParamSketchDnpOnFab, PlotParamSketchPadsOnFab, PlotParamSubtractMaskFromSilk, PlotParamSvgPrecision, PlotParamUseAuxOrigin, PlotParamUseGerberAdvancedAttributes, PlotParamUseGerberAttributes, PlotParamUseGerberExtensions, PlotParamViaOnMask, Plugging, Polyline, type PolylineConstructorParams, Property, type PropertyConstructorParams, PropertyDoNotAutoplace, PropertyHide, PropertyShowName, PropertyUnlocked, Pts, PtsArc, PtsArcEnd, PtsArcMid, PtsArcStart, type RGBAColor, RenderCache, SchematicPolyline, SchematicRectangle, SchematicSymbol, type SchematicSymbolConstructorParams, SchematicText, SchematicTextBox, type SchematicTextConstructorParams, Segment, type SegmentConstructorParams, SegmentEnd, SegmentLocked, SegmentNet, SegmentStart, Setup, SetupAllowSoldermaskBridgesInFootprints, SetupAuxAxisOrigin, SetupEdgeWidth, SetupGridOrigin, SetupLastTraceWidth, SetupModEdgeWidth, SetupModTextSize, SetupModTextWidth, SetupPadDrill, SetupPadSize, SetupPadToMaskClearance, SetupPadToPasteClearance, SetupPadToPasteClearanceRatio, SetupPadToPasteClearanceValues, SetupPcbTextSize, SetupPcbTextWidth, type SetupProperty, type SetupPropertyValues, SetupSegmentWidth, SetupSolderMaskMinWidth, SetupTenting, SetupTraceClearance, SetupTraceMin, SetupTraceWidth, SetupUviaDrill, SetupUviaMinDrill, SetupUviaMinSize, SetupUviaSize, SetupUviasAllowed, SetupViaDrill, SetupViaMinDrill, SetupViaMinSize, SetupViaSize, SetupVisibleElements, SetupZone45Only, SetupZoneClearance, Sheet, type SheetConstructorParams, SheetFill, SheetInstancePage, SheetInstancePath, SheetInstances, SheetInstancesForSheet, SheetInstancesProject, SheetInstancesRoot, SheetInstancesRootPage, SheetInstancesRootPath, SheetPin, type SheetPinElectricalType, SheetProperty, SheetSize, Stackup, StackupCastellatedPads, StackupCopperFinish, StackupDielectricConstraints, StackupEdgeConnector, StackupEdgePlating, StackupLayer, StackupLayerColor, StackupLayerEpsilonR, StackupLayerLossTangent, StackupLayerMaterial, StackupLayerThickness, StackupLayerType, type StandardPaperSize, Stroke, type StrokeProperty, StrokeType, type StrokeTypeString, SxClass, SymbolArc, SymbolArcEnd, SymbolArcFill, SymbolArcMid, SymbolArcStart, SymbolBodyStyle, SymbolBodyStyles, SymbolCircle, SymbolCircleCenter, SymbolCircleFill, SymbolCircleRadius, SymbolDuplicatePinNumbersAreJumpers, SymbolFillType, SymbolInstancePath, SymbolInstanceReference, SymbolInstanceUnit, SymbolInstances, SymbolInstancesProject, SymbolLibId, SymbolLibName, SymbolPin, SymbolPinLength, SymbolPinName, SymbolPinNames, SymbolPinNamesHide, SymbolPinNamesOffset, SymbolPinNumber, SymbolPinNumbers, SymbolPinNumbersHide, SymbolPolyline, SymbolPolylineFill, type SymbolPolylineFillLike, SymbolPower, SymbolProperty, SymbolPropertyId, SymbolRectangle, SymbolRectangleEnd, SymbolRectangleFill, SymbolRectangleStart, SymbolText, SymbolTextBox, SymbolUnit, Target, TextBoxFill, TextBoxSize, TextEffects, type TextEffectsConstructorParams, TextEffectsFont, TextEffectsFontBold, TextEffectsFontFace, TextEffectsFontItalic, TextEffectsFontLineSpacing, type TextEffectsFontProperty, TextEffectsFontSize, TextEffectsFontThickness, TextEffectsJustify, type TextEffectsProperty, TitleBlock, TitleBlockComment, TitleBlockCompany, type TitleBlockConstructorParams, TitleBlockDate, TitleBlockRevision, TitleBlockTitle, Tstamp, Unit, type UnitString, Uuid, Via, type ViaConstructorParams, ViaNet, Width, Wire, type WireConstructorParams, Xy, Zone, ZoneAttr, ZoneAttrTeardrop, ZoneAttrTeardropType, ZoneConnectPads, ZoneConnectPadsClearance, type ZoneConstructorParams, ZoneFill, ZoneFillIslandAreaMin, ZoneFillIslandRemovalMode, ZoneFillRadius, ZoneFillSmoothing, ZoneFillThermalBridgeWidth, ZoneFillThermalGap, ZoneFilledAreasThickness, ZoneFilledPolygon, ZoneHatch, ZoneKeepout, ZoneKeepoutCopperpour, ZoneKeepoutFootprints, ZoneKeepoutPads, ZoneKeepoutTracks, ZoneKeepoutVias, ZoneMinThickness, ZoneName, ZoneNet, ZoneNetName, ZonePlacement, ZonePlacementEnabled, ZonePlacementSheetname, ZonePolygon, ZonePriority, parseKicadMod, parseKicadPcb, parseKicadSch, parseKicadSexpr };
|