@tscircuit/props 0.0.591 → 0.0.593
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/README.md +199 -101
- package/dist/index.d.ts +779 -3
- package/dist/index.js +663 -423
- package/dist/index.js.map +1 -1
- package/lib/components/analogacsweepsimulation.ts +85 -0
- package/lib/components/analogdcoperatingpointsimulation.ts +18 -0
- package/lib/components/analogdcsweepsimulation.ts +50 -0
- package/lib/components/analogsimulation.ts +22 -0
- package/lib/components/analogsweepparameter.ts +213 -0
- package/lib/components/analogtransientsimulation.ts +47 -0
- package/lib/components/bus.ts +20 -0
- package/lib/components/currentsource.ts +6 -0
- package/lib/components/voltagesource.ts +6 -0
- package/lib/index.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -104666,6 +104666,26 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104666
104666
|
}>]>;
|
|
104667
104667
|
type TraceProps = z.input<typeof traceProps>;
|
|
104668
104668
|
|
|
104669
|
+
/**
|
|
104670
|
+
* Declares a group of connections that an autorouter should keep together.
|
|
104671
|
+
* Each connection may be a trace name or a port selector.
|
|
104672
|
+
*/
|
|
104673
|
+
interface BusProps {
|
|
104674
|
+
name?: string;
|
|
104675
|
+
/** Trace names or port selectors for the connections in the bus. */
|
|
104676
|
+
connections: string[];
|
|
104677
|
+
}
|
|
104678
|
+
declare const busProps: z.ZodObject<{
|
|
104679
|
+
name: z.ZodOptional<z.ZodString>;
|
|
104680
|
+
connections: z.ZodArray<z.ZodString, "many">;
|
|
104681
|
+
}, "strip", z.ZodTypeAny, {
|
|
104682
|
+
connections: string[];
|
|
104683
|
+
name?: string | undefined;
|
|
104684
|
+
}, {
|
|
104685
|
+
connections: string[];
|
|
104686
|
+
name?: string | undefined;
|
|
104687
|
+
}>;
|
|
104688
|
+
|
|
104669
104689
|
/**
|
|
104670
104690
|
* Defines matched routing constraints for two named traces that form a
|
|
104671
104691
|
* differential pair. Both connections must refer to trace `name` values.
|
|
@@ -122317,6 +122337,40 @@ interface SpiceOptions {
|
|
|
122317
122337
|
abstol?: number | string;
|
|
122318
122338
|
vntol?: number | string;
|
|
122319
122339
|
}
|
|
122340
|
+
interface AnalogAnalysisSimulationBaseProps {
|
|
122341
|
+
/** Stable identity for the simulation experiment. */
|
|
122342
|
+
name?: string;
|
|
122343
|
+
/** SPICE implementation used to run this analysis. */
|
|
122344
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice">;
|
|
122345
|
+
/** Numerical solver settings forwarded to the selected SPICE engine. */
|
|
122346
|
+
spiceOptions?: SpiceOptions;
|
|
122347
|
+
/** Render each probe with an independent vertical graph scale. */
|
|
122348
|
+
graphIndependentAxes?: boolean;
|
|
122349
|
+
/** Optional nested sweep parameter for repeated analysis runs. */
|
|
122350
|
+
children?: ReactNode;
|
|
122351
|
+
}
|
|
122352
|
+
declare const analogAnalysisSimulationBaseProps: {
|
|
122353
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122354
|
+
spiceEngine: z.ZodOptional<z.ZodType<AutocompleteString<"spicey" | "ngspice">, z.ZodTypeDef, AutocompleteString<"spicey" | "ngspice">>>;
|
|
122355
|
+
spiceOptions: z.ZodOptional<z.ZodObject<{
|
|
122356
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
122357
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122358
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122359
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122360
|
+
}, "strip", z.ZodTypeAny, {
|
|
122361
|
+
method?: "trap" | "gear" | undefined;
|
|
122362
|
+
reltol?: string | number | undefined;
|
|
122363
|
+
abstol?: string | number | undefined;
|
|
122364
|
+
vntol?: string | number | undefined;
|
|
122365
|
+
}, {
|
|
122366
|
+
method?: "trap" | "gear" | undefined;
|
|
122367
|
+
reltol?: string | number | undefined;
|
|
122368
|
+
abstol?: string | number | undefined;
|
|
122369
|
+
vntol?: string | number | undefined;
|
|
122370
|
+
}>>;
|
|
122371
|
+
graphIndependentAxes: z.ZodOptional<z.ZodBoolean>;
|
|
122372
|
+
children: z.ZodOptional<z.ZodType<ReactNode, z.ZodTypeDef, ReactNode>>;
|
|
122373
|
+
};
|
|
122320
122374
|
declare const analogSimulationProps: z.ZodObject<{
|
|
122321
122375
|
name: z.ZodOptional<z.ZodString>;
|
|
122322
122376
|
simulationType: z.ZodDefault<z.ZodLiteral<"spice_transient_analysis">>;
|
|
@@ -122371,6 +122425,708 @@ declare const analogSimulationProps: z.ZodObject<{
|
|
|
122371
122425
|
graphIndependentAxes?: boolean | undefined;
|
|
122372
122426
|
}>;
|
|
122373
122427
|
|
|
122428
|
+
interface AnalogTransientSimulationProps extends AnalogAnalysisSimulationBaseProps {
|
|
122429
|
+
/** Simulation duration. Raw numbers are milliseconds. Defaults to 10ms. */
|
|
122430
|
+
duration?: number | string;
|
|
122431
|
+
/** Time at which recording starts. Raw numbers are milliseconds. Defaults to 0ms. */
|
|
122432
|
+
startTime?: number | string;
|
|
122433
|
+
/** Maximum simulation timestep. Raw numbers are milliseconds. Defaults to 0.01ms. */
|
|
122434
|
+
timePerStep?: number | string;
|
|
122435
|
+
}
|
|
122436
|
+
declare const analogTransientSimulationProps: z.ZodEffects<z.ZodObject<{
|
|
122437
|
+
duration: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
122438
|
+
startTime: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
122439
|
+
timePerStep: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>>;
|
|
122440
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122441
|
+
spiceEngine: z.ZodOptional<z.ZodType<AutocompleteString<"spicey" | "ngspice">, z.ZodTypeDef, AutocompleteString<"spicey" | "ngspice">>>;
|
|
122442
|
+
spiceOptions: z.ZodOptional<z.ZodObject<{
|
|
122443
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
122444
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122445
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122446
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122447
|
+
}, "strip", z.ZodTypeAny, {
|
|
122448
|
+
method?: "trap" | "gear" | undefined;
|
|
122449
|
+
reltol?: string | number | undefined;
|
|
122450
|
+
abstol?: string | number | undefined;
|
|
122451
|
+
vntol?: string | number | undefined;
|
|
122452
|
+
}, {
|
|
122453
|
+
method?: "trap" | "gear" | undefined;
|
|
122454
|
+
reltol?: string | number | undefined;
|
|
122455
|
+
abstol?: string | number | undefined;
|
|
122456
|
+
vntol?: string | number | undefined;
|
|
122457
|
+
}>>;
|
|
122458
|
+
graphIndependentAxes: z.ZodOptional<z.ZodBoolean>;
|
|
122459
|
+
children: z.ZodOptional<z.ZodType<react.ReactNode, z.ZodTypeDef, react.ReactNode>>;
|
|
122460
|
+
}, "strip", z.ZodTypeAny, {
|
|
122461
|
+
duration: number;
|
|
122462
|
+
startTime: number;
|
|
122463
|
+
timePerStep: number;
|
|
122464
|
+
name?: string | undefined;
|
|
122465
|
+
children?: react.ReactNode;
|
|
122466
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122467
|
+
spiceOptions?: {
|
|
122468
|
+
method?: "trap" | "gear" | undefined;
|
|
122469
|
+
reltol?: string | number | undefined;
|
|
122470
|
+
abstol?: string | number | undefined;
|
|
122471
|
+
vntol?: string | number | undefined;
|
|
122472
|
+
} | undefined;
|
|
122473
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122474
|
+
}, {
|
|
122475
|
+
name?: string | undefined;
|
|
122476
|
+
children?: react.ReactNode;
|
|
122477
|
+
duration?: string | number | undefined;
|
|
122478
|
+
startTime?: string | number | undefined;
|
|
122479
|
+
timePerStep?: string | number | undefined;
|
|
122480
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122481
|
+
spiceOptions?: {
|
|
122482
|
+
method?: "trap" | "gear" | undefined;
|
|
122483
|
+
reltol?: string | number | undefined;
|
|
122484
|
+
abstol?: string | number | undefined;
|
|
122485
|
+
vntol?: string | number | undefined;
|
|
122486
|
+
} | undefined;
|
|
122487
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122488
|
+
}>, {
|
|
122489
|
+
duration: number;
|
|
122490
|
+
startTime: number;
|
|
122491
|
+
timePerStep: number;
|
|
122492
|
+
name?: string | undefined;
|
|
122493
|
+
children?: react.ReactNode;
|
|
122494
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122495
|
+
spiceOptions?: {
|
|
122496
|
+
method?: "trap" | "gear" | undefined;
|
|
122497
|
+
reltol?: string | number | undefined;
|
|
122498
|
+
abstol?: string | number | undefined;
|
|
122499
|
+
vntol?: string | number | undefined;
|
|
122500
|
+
} | undefined;
|
|
122501
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122502
|
+
}, {
|
|
122503
|
+
name?: string | undefined;
|
|
122504
|
+
children?: react.ReactNode;
|
|
122505
|
+
duration?: string | number | undefined;
|
|
122506
|
+
startTime?: string | number | undefined;
|
|
122507
|
+
timePerStep?: string | number | undefined;
|
|
122508
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122509
|
+
spiceOptions?: {
|
|
122510
|
+
method?: "trap" | "gear" | undefined;
|
|
122511
|
+
reltol?: string | number | undefined;
|
|
122512
|
+
abstol?: string | number | undefined;
|
|
122513
|
+
vntol?: string | number | undefined;
|
|
122514
|
+
} | undefined;
|
|
122515
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122516
|
+
}>;
|
|
122517
|
+
|
|
122518
|
+
type AnalogDcOperatingPointSimulationProps = AnalogAnalysisSimulationBaseProps;
|
|
122519
|
+
declare const analogDcOperatingPointSimulationProps: z.ZodObject<{
|
|
122520
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122521
|
+
spiceEngine: z.ZodOptional<z.ZodType<AutocompleteString<"spicey" | "ngspice">, z.ZodTypeDef, AutocompleteString<"spicey" | "ngspice">>>;
|
|
122522
|
+
spiceOptions: z.ZodOptional<z.ZodObject<{
|
|
122523
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
122524
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122525
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122526
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122527
|
+
}, "strip", z.ZodTypeAny, {
|
|
122528
|
+
method?: "trap" | "gear" | undefined;
|
|
122529
|
+
reltol?: string | number | undefined;
|
|
122530
|
+
abstol?: string | number | undefined;
|
|
122531
|
+
vntol?: string | number | undefined;
|
|
122532
|
+
}, {
|
|
122533
|
+
method?: "trap" | "gear" | undefined;
|
|
122534
|
+
reltol?: string | number | undefined;
|
|
122535
|
+
abstol?: string | number | undefined;
|
|
122536
|
+
vntol?: string | number | undefined;
|
|
122537
|
+
}>>;
|
|
122538
|
+
graphIndependentAxes: z.ZodOptional<z.ZodBoolean>;
|
|
122539
|
+
children: z.ZodOptional<z.ZodType<react.ReactNode, z.ZodTypeDef, react.ReactNode>>;
|
|
122540
|
+
}, "strip", z.ZodTypeAny, {
|
|
122541
|
+
name?: string | undefined;
|
|
122542
|
+
children?: react.ReactNode;
|
|
122543
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122544
|
+
spiceOptions?: {
|
|
122545
|
+
method?: "trap" | "gear" | undefined;
|
|
122546
|
+
reltol?: string | number | undefined;
|
|
122547
|
+
abstol?: string | number | undefined;
|
|
122548
|
+
vntol?: string | number | undefined;
|
|
122549
|
+
} | undefined;
|
|
122550
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122551
|
+
}, {
|
|
122552
|
+
name?: string | undefined;
|
|
122553
|
+
children?: react.ReactNode;
|
|
122554
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122555
|
+
spiceOptions?: {
|
|
122556
|
+
method?: "trap" | "gear" | undefined;
|
|
122557
|
+
reltol?: string | number | undefined;
|
|
122558
|
+
abstol?: string | number | undefined;
|
|
122559
|
+
vntol?: string | number | undefined;
|
|
122560
|
+
} | undefined;
|
|
122561
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122562
|
+
}>;
|
|
122563
|
+
|
|
122564
|
+
interface AnalogDcSweepSimulationProps extends AnalogAnalysisSimulationBaseProps {
|
|
122565
|
+
/** Selector for the independent voltage or current source being swept. */
|
|
122566
|
+
sweepSource: string;
|
|
122567
|
+
/** First source level. Raw numbers use volts or amperes according to the source. */
|
|
122568
|
+
sweepStart: number | string;
|
|
122569
|
+
/** Last source level. Raw numbers use volts or amperes according to the source. */
|
|
122570
|
+
sweepStop: number | string;
|
|
122571
|
+
/** Nonzero increment directed from sweepStart toward sweepStop. */
|
|
122572
|
+
sweepStep: number | string;
|
|
122573
|
+
}
|
|
122574
|
+
declare const analogDcSweepSimulationProps: z.ZodEffects<z.ZodObject<{
|
|
122575
|
+
sweepSource: z.ZodString;
|
|
122576
|
+
sweepStart: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>;
|
|
122577
|
+
sweepStop: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>;
|
|
122578
|
+
sweepStep: z.ZodEffects<z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>, number, string | number>;
|
|
122579
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122580
|
+
spiceEngine: z.ZodOptional<z.ZodType<AutocompleteString<"spicey" | "ngspice">, z.ZodTypeDef, AutocompleteString<"spicey" | "ngspice">>>;
|
|
122581
|
+
spiceOptions: z.ZodOptional<z.ZodObject<{
|
|
122582
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
122583
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122584
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122585
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122586
|
+
}, "strip", z.ZodTypeAny, {
|
|
122587
|
+
method?: "trap" | "gear" | undefined;
|
|
122588
|
+
reltol?: string | number | undefined;
|
|
122589
|
+
abstol?: string | number | undefined;
|
|
122590
|
+
vntol?: string | number | undefined;
|
|
122591
|
+
}, {
|
|
122592
|
+
method?: "trap" | "gear" | undefined;
|
|
122593
|
+
reltol?: string | number | undefined;
|
|
122594
|
+
abstol?: string | number | undefined;
|
|
122595
|
+
vntol?: string | number | undefined;
|
|
122596
|
+
}>>;
|
|
122597
|
+
graphIndependentAxes: z.ZodOptional<z.ZodBoolean>;
|
|
122598
|
+
children: z.ZodOptional<z.ZodType<react.ReactNode, z.ZodTypeDef, react.ReactNode>>;
|
|
122599
|
+
}, "strip", z.ZodTypeAny, {
|
|
122600
|
+
sweepSource: string;
|
|
122601
|
+
sweepStart: number;
|
|
122602
|
+
sweepStop: number;
|
|
122603
|
+
sweepStep: number;
|
|
122604
|
+
name?: string | undefined;
|
|
122605
|
+
children?: react.ReactNode;
|
|
122606
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122607
|
+
spiceOptions?: {
|
|
122608
|
+
method?: "trap" | "gear" | undefined;
|
|
122609
|
+
reltol?: string | number | undefined;
|
|
122610
|
+
abstol?: string | number | undefined;
|
|
122611
|
+
vntol?: string | number | undefined;
|
|
122612
|
+
} | undefined;
|
|
122613
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122614
|
+
}, {
|
|
122615
|
+
sweepSource: string;
|
|
122616
|
+
sweepStart: string | number;
|
|
122617
|
+
sweepStop: string | number;
|
|
122618
|
+
sweepStep: string | number;
|
|
122619
|
+
name?: string | undefined;
|
|
122620
|
+
children?: react.ReactNode;
|
|
122621
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122622
|
+
spiceOptions?: {
|
|
122623
|
+
method?: "trap" | "gear" | undefined;
|
|
122624
|
+
reltol?: string | number | undefined;
|
|
122625
|
+
abstol?: string | number | undefined;
|
|
122626
|
+
vntol?: string | number | undefined;
|
|
122627
|
+
} | undefined;
|
|
122628
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122629
|
+
}>, {
|
|
122630
|
+
sweepSource: string;
|
|
122631
|
+
sweepStart: number;
|
|
122632
|
+
sweepStop: number;
|
|
122633
|
+
sweepStep: number;
|
|
122634
|
+
name?: string | undefined;
|
|
122635
|
+
children?: react.ReactNode;
|
|
122636
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122637
|
+
spiceOptions?: {
|
|
122638
|
+
method?: "trap" | "gear" | undefined;
|
|
122639
|
+
reltol?: string | number | undefined;
|
|
122640
|
+
abstol?: string | number | undefined;
|
|
122641
|
+
vntol?: string | number | undefined;
|
|
122642
|
+
} | undefined;
|
|
122643
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122644
|
+
}, {
|
|
122645
|
+
sweepSource: string;
|
|
122646
|
+
sweepStart: string | number;
|
|
122647
|
+
sweepStop: string | number;
|
|
122648
|
+
sweepStep: string | number;
|
|
122649
|
+
name?: string | undefined;
|
|
122650
|
+
children?: react.ReactNode;
|
|
122651
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122652
|
+
spiceOptions?: {
|
|
122653
|
+
method?: "trap" | "gear" | undefined;
|
|
122654
|
+
reltol?: string | number | undefined;
|
|
122655
|
+
abstol?: string | number | undefined;
|
|
122656
|
+
vntol?: string | number | undefined;
|
|
122657
|
+
} | undefined;
|
|
122658
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122659
|
+
}>;
|
|
122660
|
+
|
|
122661
|
+
interface AnalogAcSweepSimulationProps extends AnalogAnalysisSimulationBaseProps {
|
|
122662
|
+
/** Frequency spacing used by the AC analysis. */
|
|
122663
|
+
sweepType: "linear" | "decade" | "octave";
|
|
122664
|
+
/** First positive frequency. Raw numbers are hertz. */
|
|
122665
|
+
startFrequency: number | string;
|
|
122666
|
+
/** Last frequency, which must be greater than startFrequency. Raw numbers are hertz. */
|
|
122667
|
+
stopFrequency: number | string;
|
|
122668
|
+
/** Samples per decade or octave; required for non-linear sweeps. */
|
|
122669
|
+
samplesPerInterval?: number;
|
|
122670
|
+
/** Total samples; required for linear sweeps. */
|
|
122671
|
+
sampleCount?: number;
|
|
122672
|
+
}
|
|
122673
|
+
declare const analogAcSweepSimulationProps: z.ZodEffects<z.ZodObject<{
|
|
122674
|
+
sweepType: z.ZodEnum<["linear", "decade", "octave"]>;
|
|
122675
|
+
startFrequency: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
122676
|
+
stopFrequency: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
122677
|
+
samplesPerInterval: z.ZodOptional<z.ZodNumber>;
|
|
122678
|
+
sampleCount: z.ZodOptional<z.ZodNumber>;
|
|
122679
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122680
|
+
spiceEngine: z.ZodOptional<z.ZodType<AutocompleteString<"spicey" | "ngspice">, z.ZodTypeDef, AutocompleteString<"spicey" | "ngspice">>>;
|
|
122681
|
+
spiceOptions: z.ZodOptional<z.ZodObject<{
|
|
122682
|
+
method: z.ZodOptional<z.ZodEnum<["trap", "gear"]>>;
|
|
122683
|
+
reltol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122684
|
+
abstol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122685
|
+
vntol: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
122686
|
+
}, "strip", z.ZodTypeAny, {
|
|
122687
|
+
method?: "trap" | "gear" | undefined;
|
|
122688
|
+
reltol?: string | number | undefined;
|
|
122689
|
+
abstol?: string | number | undefined;
|
|
122690
|
+
vntol?: string | number | undefined;
|
|
122691
|
+
}, {
|
|
122692
|
+
method?: "trap" | "gear" | undefined;
|
|
122693
|
+
reltol?: string | number | undefined;
|
|
122694
|
+
abstol?: string | number | undefined;
|
|
122695
|
+
vntol?: string | number | undefined;
|
|
122696
|
+
}>>;
|
|
122697
|
+
graphIndependentAxes: z.ZodOptional<z.ZodBoolean>;
|
|
122698
|
+
children: z.ZodOptional<z.ZodType<react.ReactNode, z.ZodTypeDef, react.ReactNode>>;
|
|
122699
|
+
}, "strip", z.ZodTypeAny, {
|
|
122700
|
+
sweepType: "linear" | "decade" | "octave";
|
|
122701
|
+
startFrequency: number;
|
|
122702
|
+
stopFrequency: number;
|
|
122703
|
+
name?: string | undefined;
|
|
122704
|
+
children?: react.ReactNode;
|
|
122705
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122706
|
+
spiceOptions?: {
|
|
122707
|
+
method?: "trap" | "gear" | undefined;
|
|
122708
|
+
reltol?: string | number | undefined;
|
|
122709
|
+
abstol?: string | number | undefined;
|
|
122710
|
+
vntol?: string | number | undefined;
|
|
122711
|
+
} | undefined;
|
|
122712
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122713
|
+
samplesPerInterval?: number | undefined;
|
|
122714
|
+
sampleCount?: number | undefined;
|
|
122715
|
+
}, {
|
|
122716
|
+
sweepType: "linear" | "decade" | "octave";
|
|
122717
|
+
startFrequency: string | number;
|
|
122718
|
+
stopFrequency: string | number;
|
|
122719
|
+
name?: string | undefined;
|
|
122720
|
+
children?: react.ReactNode;
|
|
122721
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122722
|
+
spiceOptions?: {
|
|
122723
|
+
method?: "trap" | "gear" | undefined;
|
|
122724
|
+
reltol?: string | number | undefined;
|
|
122725
|
+
abstol?: string | number | undefined;
|
|
122726
|
+
vntol?: string | number | undefined;
|
|
122727
|
+
} | undefined;
|
|
122728
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122729
|
+
samplesPerInterval?: number | undefined;
|
|
122730
|
+
sampleCount?: number | undefined;
|
|
122731
|
+
}>, {
|
|
122732
|
+
sweepType: "linear" | "decade" | "octave";
|
|
122733
|
+
startFrequency: number;
|
|
122734
|
+
stopFrequency: number;
|
|
122735
|
+
name?: string | undefined;
|
|
122736
|
+
children?: react.ReactNode;
|
|
122737
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122738
|
+
spiceOptions?: {
|
|
122739
|
+
method?: "trap" | "gear" | undefined;
|
|
122740
|
+
reltol?: string | number | undefined;
|
|
122741
|
+
abstol?: string | number | undefined;
|
|
122742
|
+
vntol?: string | number | undefined;
|
|
122743
|
+
} | undefined;
|
|
122744
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122745
|
+
samplesPerInterval?: number | undefined;
|
|
122746
|
+
sampleCount?: number | undefined;
|
|
122747
|
+
}, {
|
|
122748
|
+
sweepType: "linear" | "decade" | "octave";
|
|
122749
|
+
startFrequency: string | number;
|
|
122750
|
+
stopFrequency: string | number;
|
|
122751
|
+
name?: string | undefined;
|
|
122752
|
+
children?: react.ReactNode;
|
|
122753
|
+
spiceEngine?: AutocompleteString<"spicey" | "ngspice"> | undefined;
|
|
122754
|
+
spiceOptions?: {
|
|
122755
|
+
method?: "trap" | "gear" | undefined;
|
|
122756
|
+
reltol?: string | number | undefined;
|
|
122757
|
+
abstol?: string | number | undefined;
|
|
122758
|
+
vntol?: string | number | undefined;
|
|
122759
|
+
} | undefined;
|
|
122760
|
+
graphIndependentAxes?: boolean | undefined;
|
|
122761
|
+
samplesPerInterval?: number | undefined;
|
|
122762
|
+
sampleCount?: number | undefined;
|
|
122763
|
+
}>;
|
|
122764
|
+
|
|
122765
|
+
interface AnalogSweepCoordinatesProps {
|
|
122766
|
+
/** Stable identity for this sweep parameter. */
|
|
122767
|
+
name?: string;
|
|
122768
|
+
/** Explicit parameter coordinates. Cannot be combined with start/stop/step. */
|
|
122769
|
+
values?: Array<number | string>;
|
|
122770
|
+
/** First generated parameter coordinate. Requires stop and step. */
|
|
122771
|
+
start?: number | string;
|
|
122772
|
+
/** Last generated parameter coordinate. Requires start and step. */
|
|
122773
|
+
stop?: number | string;
|
|
122774
|
+
/** Nonzero parameter increment directed from start toward stop. */
|
|
122775
|
+
step?: number | string;
|
|
122776
|
+
}
|
|
122777
|
+
interface AnalogResistanceSweepParameterProps extends AnalogSweepCoordinatesProps {
|
|
122778
|
+
parameterType: "resistance";
|
|
122779
|
+
/** Selector for the resistor whose simulation-only resistance is swept. */
|
|
122780
|
+
resistorRef: string;
|
|
122781
|
+
}
|
|
122782
|
+
interface AnalogCapacitanceSweepParameterProps extends AnalogSweepCoordinatesProps {
|
|
122783
|
+
parameterType: "capacitance";
|
|
122784
|
+
/** Selector for the capacitor whose simulation-only capacitance is swept. */
|
|
122785
|
+
capacitorRef: string;
|
|
122786
|
+
}
|
|
122787
|
+
interface AnalogInductanceSweepParameterProps extends AnalogSweepCoordinatesProps {
|
|
122788
|
+
parameterType: "inductance";
|
|
122789
|
+
/** Selector for the inductor whose simulation-only inductance is swept. */
|
|
122790
|
+
inductorRef: string;
|
|
122791
|
+
}
|
|
122792
|
+
interface AnalogVoltageSweepParameterProps extends AnalogSweepCoordinatesProps {
|
|
122793
|
+
parameterType: "voltage";
|
|
122794
|
+
/** Net whose simulation-only voltage is swept. */
|
|
122795
|
+
net: string;
|
|
122796
|
+
}
|
|
122797
|
+
interface AnalogCurrentSweepParameterProps extends AnalogSweepCoordinatesProps {
|
|
122798
|
+
parameterType: "current";
|
|
122799
|
+
/** Selector for the current source whose simulation-only current is swept. */
|
|
122800
|
+
currentSourceRef: string;
|
|
122801
|
+
}
|
|
122802
|
+
declare const analogResistanceSweepParameterProps: z.ZodObject<{
|
|
122803
|
+
parameterType: z.ZodLiteral<"resistance">;
|
|
122804
|
+
resistorRef: z.ZodString;
|
|
122805
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122806
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122807
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122808
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122809
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122810
|
+
}, "strict", z.ZodTypeAny, {
|
|
122811
|
+
parameterType: "resistance";
|
|
122812
|
+
resistorRef: string;
|
|
122813
|
+
values?: number[] | undefined;
|
|
122814
|
+
name?: string | undefined;
|
|
122815
|
+
start?: number | undefined;
|
|
122816
|
+
stop?: number | undefined;
|
|
122817
|
+
step?: number | undefined;
|
|
122818
|
+
}, {
|
|
122819
|
+
parameterType: "resistance";
|
|
122820
|
+
resistorRef: string;
|
|
122821
|
+
values?: (string | number)[] | undefined;
|
|
122822
|
+
name?: string | undefined;
|
|
122823
|
+
start?: string | number | undefined;
|
|
122824
|
+
stop?: string | number | undefined;
|
|
122825
|
+
step?: string | number | undefined;
|
|
122826
|
+
}>;
|
|
122827
|
+
declare const analogCapacitanceSweepParameterProps: z.ZodObject<{
|
|
122828
|
+
parameterType: z.ZodLiteral<"capacitance">;
|
|
122829
|
+
capacitorRef: z.ZodString;
|
|
122830
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122831
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122832
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122833
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122834
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122835
|
+
}, "strict", z.ZodTypeAny, {
|
|
122836
|
+
parameterType: "capacitance";
|
|
122837
|
+
capacitorRef: string;
|
|
122838
|
+
values?: number[] | undefined;
|
|
122839
|
+
name?: string | undefined;
|
|
122840
|
+
start?: number | undefined;
|
|
122841
|
+
stop?: number | undefined;
|
|
122842
|
+
step?: number | undefined;
|
|
122843
|
+
}, {
|
|
122844
|
+
parameterType: "capacitance";
|
|
122845
|
+
capacitorRef: string;
|
|
122846
|
+
values?: (string | number)[] | undefined;
|
|
122847
|
+
name?: string | undefined;
|
|
122848
|
+
start?: string | number | undefined;
|
|
122849
|
+
stop?: string | number | undefined;
|
|
122850
|
+
step?: string | number | undefined;
|
|
122851
|
+
}>;
|
|
122852
|
+
declare const analogInductanceSweepParameterProps: z.ZodObject<{
|
|
122853
|
+
parameterType: z.ZodLiteral<"inductance">;
|
|
122854
|
+
inductorRef: z.ZodString;
|
|
122855
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122856
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122857
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122858
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122859
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122860
|
+
}, "strict", z.ZodTypeAny, {
|
|
122861
|
+
parameterType: "inductance";
|
|
122862
|
+
inductorRef: string;
|
|
122863
|
+
values?: number[] | undefined;
|
|
122864
|
+
name?: string | undefined;
|
|
122865
|
+
start?: number | undefined;
|
|
122866
|
+
stop?: number | undefined;
|
|
122867
|
+
step?: number | undefined;
|
|
122868
|
+
}, {
|
|
122869
|
+
parameterType: "inductance";
|
|
122870
|
+
inductorRef: string;
|
|
122871
|
+
values?: (string | number)[] | undefined;
|
|
122872
|
+
name?: string | undefined;
|
|
122873
|
+
start?: string | number | undefined;
|
|
122874
|
+
stop?: string | number | undefined;
|
|
122875
|
+
step?: string | number | undefined;
|
|
122876
|
+
}>;
|
|
122877
|
+
declare const analogVoltageSweepParameterProps: z.ZodObject<{
|
|
122878
|
+
parameterType: z.ZodLiteral<"voltage">;
|
|
122879
|
+
net: z.ZodString;
|
|
122880
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122881
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122882
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122883
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122884
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122885
|
+
}, "strict", z.ZodTypeAny, {
|
|
122886
|
+
net: string;
|
|
122887
|
+
parameterType: "voltage";
|
|
122888
|
+
values?: number[] | undefined;
|
|
122889
|
+
name?: string | undefined;
|
|
122890
|
+
start?: number | undefined;
|
|
122891
|
+
stop?: number | undefined;
|
|
122892
|
+
step?: number | undefined;
|
|
122893
|
+
}, {
|
|
122894
|
+
net: string;
|
|
122895
|
+
parameterType: "voltage";
|
|
122896
|
+
values?: (string | number)[] | undefined;
|
|
122897
|
+
name?: string | undefined;
|
|
122898
|
+
start?: string | number | undefined;
|
|
122899
|
+
stop?: string | number | undefined;
|
|
122900
|
+
step?: string | number | undefined;
|
|
122901
|
+
}>;
|
|
122902
|
+
declare const analogCurrentSweepParameterProps: z.ZodObject<{
|
|
122903
|
+
parameterType: z.ZodLiteral<"current">;
|
|
122904
|
+
currentSourceRef: z.ZodString;
|
|
122905
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122906
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122907
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122908
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122909
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122910
|
+
}, "strict", z.ZodTypeAny, {
|
|
122911
|
+
parameterType: "current";
|
|
122912
|
+
currentSourceRef: string;
|
|
122913
|
+
values?: number[] | undefined;
|
|
122914
|
+
name?: string | undefined;
|
|
122915
|
+
start?: number | undefined;
|
|
122916
|
+
stop?: number | undefined;
|
|
122917
|
+
step?: number | undefined;
|
|
122918
|
+
}, {
|
|
122919
|
+
parameterType: "current";
|
|
122920
|
+
currentSourceRef: string;
|
|
122921
|
+
values?: (string | number)[] | undefined;
|
|
122922
|
+
name?: string | undefined;
|
|
122923
|
+
start?: string | number | undefined;
|
|
122924
|
+
stop?: string | number | undefined;
|
|
122925
|
+
step?: string | number | undefined;
|
|
122926
|
+
}>;
|
|
122927
|
+
type AnalogSweepParameterProps = AnalogResistanceSweepParameterProps | AnalogCapacitanceSweepParameterProps | AnalogInductanceSweepParameterProps | AnalogVoltageSweepParameterProps | AnalogCurrentSweepParameterProps;
|
|
122928
|
+
declare const analogSweepParameterProps: z.ZodEffects<z.ZodDiscriminatedUnion<"parameterType", [z.ZodObject<{
|
|
122929
|
+
parameterType: z.ZodLiteral<"resistance">;
|
|
122930
|
+
resistorRef: z.ZodString;
|
|
122931
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122932
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122933
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122934
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122935
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122936
|
+
}, "strict", z.ZodTypeAny, {
|
|
122937
|
+
parameterType: "resistance";
|
|
122938
|
+
resistorRef: string;
|
|
122939
|
+
values?: number[] | undefined;
|
|
122940
|
+
name?: string | undefined;
|
|
122941
|
+
start?: number | undefined;
|
|
122942
|
+
stop?: number | undefined;
|
|
122943
|
+
step?: number | undefined;
|
|
122944
|
+
}, {
|
|
122945
|
+
parameterType: "resistance";
|
|
122946
|
+
resistorRef: string;
|
|
122947
|
+
values?: (string | number)[] | undefined;
|
|
122948
|
+
name?: string | undefined;
|
|
122949
|
+
start?: string | number | undefined;
|
|
122950
|
+
stop?: string | number | undefined;
|
|
122951
|
+
step?: string | number | undefined;
|
|
122952
|
+
}>, z.ZodObject<{
|
|
122953
|
+
parameterType: z.ZodLiteral<"capacitance">;
|
|
122954
|
+
capacitorRef: z.ZodString;
|
|
122955
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122956
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122957
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122958
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122959
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122960
|
+
}, "strict", z.ZodTypeAny, {
|
|
122961
|
+
parameterType: "capacitance";
|
|
122962
|
+
capacitorRef: string;
|
|
122963
|
+
values?: number[] | undefined;
|
|
122964
|
+
name?: string | undefined;
|
|
122965
|
+
start?: number | undefined;
|
|
122966
|
+
stop?: number | undefined;
|
|
122967
|
+
step?: number | undefined;
|
|
122968
|
+
}, {
|
|
122969
|
+
parameterType: "capacitance";
|
|
122970
|
+
capacitorRef: string;
|
|
122971
|
+
values?: (string | number)[] | undefined;
|
|
122972
|
+
name?: string | undefined;
|
|
122973
|
+
start?: string | number | undefined;
|
|
122974
|
+
stop?: string | number | undefined;
|
|
122975
|
+
step?: string | number | undefined;
|
|
122976
|
+
}>, z.ZodObject<{
|
|
122977
|
+
parameterType: z.ZodLiteral<"inductance">;
|
|
122978
|
+
inductorRef: z.ZodString;
|
|
122979
|
+
name: z.ZodOptional<z.ZodString>;
|
|
122980
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
122981
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122982
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122983
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
122984
|
+
}, "strict", z.ZodTypeAny, {
|
|
122985
|
+
parameterType: "inductance";
|
|
122986
|
+
inductorRef: string;
|
|
122987
|
+
values?: number[] | undefined;
|
|
122988
|
+
name?: string | undefined;
|
|
122989
|
+
start?: number | undefined;
|
|
122990
|
+
stop?: number | undefined;
|
|
122991
|
+
step?: number | undefined;
|
|
122992
|
+
}, {
|
|
122993
|
+
parameterType: "inductance";
|
|
122994
|
+
inductorRef: string;
|
|
122995
|
+
values?: (string | number)[] | undefined;
|
|
122996
|
+
name?: string | undefined;
|
|
122997
|
+
start?: string | number | undefined;
|
|
122998
|
+
stop?: string | number | undefined;
|
|
122999
|
+
step?: string | number | undefined;
|
|
123000
|
+
}>, z.ZodObject<{
|
|
123001
|
+
parameterType: z.ZodLiteral<"voltage">;
|
|
123002
|
+
net: z.ZodString;
|
|
123003
|
+
name: z.ZodOptional<z.ZodString>;
|
|
123004
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
123005
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
123006
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
123007
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
123008
|
+
}, "strict", z.ZodTypeAny, {
|
|
123009
|
+
net: string;
|
|
123010
|
+
parameterType: "voltage";
|
|
123011
|
+
values?: number[] | undefined;
|
|
123012
|
+
name?: string | undefined;
|
|
123013
|
+
start?: number | undefined;
|
|
123014
|
+
stop?: number | undefined;
|
|
123015
|
+
step?: number | undefined;
|
|
123016
|
+
}, {
|
|
123017
|
+
net: string;
|
|
123018
|
+
parameterType: "voltage";
|
|
123019
|
+
values?: (string | number)[] | undefined;
|
|
123020
|
+
name?: string | undefined;
|
|
123021
|
+
start?: string | number | undefined;
|
|
123022
|
+
stop?: string | number | undefined;
|
|
123023
|
+
step?: string | number | undefined;
|
|
123024
|
+
}>, z.ZodObject<{
|
|
123025
|
+
parameterType: z.ZodLiteral<"current">;
|
|
123026
|
+
currentSourceRef: z.ZodString;
|
|
123027
|
+
name: z.ZodOptional<z.ZodString>;
|
|
123028
|
+
values: z.ZodOptional<z.ZodArray<z.ZodType<number, z.ZodTypeDef, string | number>, "many">>;
|
|
123029
|
+
start: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
123030
|
+
stop: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
123031
|
+
step: z.ZodOptional<z.ZodType<number, z.ZodTypeDef, string | number>>;
|
|
123032
|
+
}, "strict", z.ZodTypeAny, {
|
|
123033
|
+
parameterType: "current";
|
|
123034
|
+
currentSourceRef: string;
|
|
123035
|
+
values?: number[] | undefined;
|
|
123036
|
+
name?: string | undefined;
|
|
123037
|
+
start?: number | undefined;
|
|
123038
|
+
stop?: number | undefined;
|
|
123039
|
+
step?: number | undefined;
|
|
123040
|
+
}, {
|
|
123041
|
+
parameterType: "current";
|
|
123042
|
+
currentSourceRef: string;
|
|
123043
|
+
values?: (string | number)[] | undefined;
|
|
123044
|
+
name?: string | undefined;
|
|
123045
|
+
start?: string | number | undefined;
|
|
123046
|
+
stop?: string | number | undefined;
|
|
123047
|
+
step?: string | number | undefined;
|
|
123048
|
+
}>]>, {
|
|
123049
|
+
parameterType: "resistance";
|
|
123050
|
+
resistorRef: string;
|
|
123051
|
+
values?: number[] | undefined;
|
|
123052
|
+
name?: string | undefined;
|
|
123053
|
+
start?: number | undefined;
|
|
123054
|
+
stop?: number | undefined;
|
|
123055
|
+
step?: number | undefined;
|
|
123056
|
+
} | {
|
|
123057
|
+
parameterType: "capacitance";
|
|
123058
|
+
capacitorRef: string;
|
|
123059
|
+
values?: number[] | undefined;
|
|
123060
|
+
name?: string | undefined;
|
|
123061
|
+
start?: number | undefined;
|
|
123062
|
+
stop?: number | undefined;
|
|
123063
|
+
step?: number | undefined;
|
|
123064
|
+
} | {
|
|
123065
|
+
parameterType: "inductance";
|
|
123066
|
+
inductorRef: string;
|
|
123067
|
+
values?: number[] | undefined;
|
|
123068
|
+
name?: string | undefined;
|
|
123069
|
+
start?: number | undefined;
|
|
123070
|
+
stop?: number | undefined;
|
|
123071
|
+
step?: number | undefined;
|
|
123072
|
+
} | {
|
|
123073
|
+
net: string;
|
|
123074
|
+
parameterType: "voltage";
|
|
123075
|
+
values?: number[] | undefined;
|
|
123076
|
+
name?: string | undefined;
|
|
123077
|
+
start?: number | undefined;
|
|
123078
|
+
stop?: number | undefined;
|
|
123079
|
+
step?: number | undefined;
|
|
123080
|
+
} | {
|
|
123081
|
+
parameterType: "current";
|
|
123082
|
+
currentSourceRef: string;
|
|
123083
|
+
values?: number[] | undefined;
|
|
123084
|
+
name?: string | undefined;
|
|
123085
|
+
start?: number | undefined;
|
|
123086
|
+
stop?: number | undefined;
|
|
123087
|
+
step?: number | undefined;
|
|
123088
|
+
}, {
|
|
123089
|
+
parameterType: "resistance";
|
|
123090
|
+
resistorRef: string;
|
|
123091
|
+
values?: (string | number)[] | undefined;
|
|
123092
|
+
name?: string | undefined;
|
|
123093
|
+
start?: string | number | undefined;
|
|
123094
|
+
stop?: string | number | undefined;
|
|
123095
|
+
step?: string | number | undefined;
|
|
123096
|
+
} | {
|
|
123097
|
+
parameterType: "capacitance";
|
|
123098
|
+
capacitorRef: string;
|
|
123099
|
+
values?: (string | number)[] | undefined;
|
|
123100
|
+
name?: string | undefined;
|
|
123101
|
+
start?: string | number | undefined;
|
|
123102
|
+
stop?: string | number | undefined;
|
|
123103
|
+
step?: string | number | undefined;
|
|
123104
|
+
} | {
|
|
123105
|
+
parameterType: "inductance";
|
|
123106
|
+
inductorRef: string;
|
|
123107
|
+
values?: (string | number)[] | undefined;
|
|
123108
|
+
name?: string | undefined;
|
|
123109
|
+
start?: string | number | undefined;
|
|
123110
|
+
stop?: string | number | undefined;
|
|
123111
|
+
step?: string | number | undefined;
|
|
123112
|
+
} | {
|
|
123113
|
+
net: string;
|
|
123114
|
+
parameterType: "voltage";
|
|
123115
|
+
values?: (string | number)[] | undefined;
|
|
123116
|
+
name?: string | undefined;
|
|
123117
|
+
start?: string | number | undefined;
|
|
123118
|
+
stop?: string | number | undefined;
|
|
123119
|
+
step?: string | number | undefined;
|
|
123120
|
+
} | {
|
|
123121
|
+
parameterType: "current";
|
|
123122
|
+
currentSourceRef: string;
|
|
123123
|
+
values?: (string | number)[] | undefined;
|
|
123124
|
+
name?: string | undefined;
|
|
123125
|
+
start?: string | number | undefined;
|
|
123126
|
+
stop?: string | number | undefined;
|
|
123127
|
+
step?: string | number | undefined;
|
|
123128
|
+
}>;
|
|
123129
|
+
|
|
122374
123130
|
interface AutoroutingPhaseProps extends RoutingTolerances {
|
|
122375
123131
|
key?: any;
|
|
122376
123132
|
name?: string;
|
|
@@ -169935,6 +170691,10 @@ interface VoltageSourceProps<PinLabel extends string = string> extends CommonCom
|
|
|
169935
170691
|
fallTime?: number | string;
|
|
169936
170692
|
pulseWidth?: number | string;
|
|
169937
170693
|
period?: number | string;
|
|
170694
|
+
/** Small-signal AC magnitude. Raw numbers are volts. */
|
|
170695
|
+
acMagnitude?: number | string;
|
|
170696
|
+
/** Small-signal AC phase. Raw numbers are degrees. */
|
|
170697
|
+
acPhase?: number | string;
|
|
169938
170698
|
connections?: Connections<VoltageSourcePinLabels>;
|
|
169939
170699
|
}
|
|
169940
170700
|
declare const voltageSourceProps: z.ZodObject<{
|
|
@@ -173308,6 +174068,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
173308
174068
|
fallTime: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
173309
174069
|
pulseWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
173310
174070
|
period: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
174071
|
+
acMagnitude: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
174072
|
+
acPhase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
173311
174073
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["pin1", "pin2", "pos", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
173312
174074
|
}, "strip", z.ZodTypeAny, {
|
|
173313
174075
|
name: string;
|
|
@@ -173899,6 +174661,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
173899
174661
|
fallTime?: number | undefined;
|
|
173900
174662
|
pulseWidth?: number | undefined;
|
|
173901
174663
|
period?: number | undefined;
|
|
174664
|
+
acMagnitude?: number | undefined;
|
|
174665
|
+
acPhase?: number | undefined;
|
|
173902
174666
|
}, {
|
|
173903
174667
|
name: string;
|
|
173904
174668
|
symbol?: SymbolProp | undefined;
|
|
@@ -174491,6 +175255,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
174491
175255
|
fallTime?: string | number | undefined;
|
|
174492
175256
|
pulseWidth?: string | number | undefined;
|
|
174493
175257
|
period?: string | number | undefined;
|
|
175258
|
+
acMagnitude?: string | number | undefined;
|
|
175259
|
+
acPhase?: string | number | undefined;
|
|
174494
175260
|
}>;
|
|
174495
175261
|
declare const voltageSourcePins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
174496
175262
|
|
|
@@ -174503,6 +175269,10 @@ interface CurrentSourceProps<PinLabel extends string = string> extends CommonCom
|
|
|
174503
175269
|
waveShape?: WaveShape;
|
|
174504
175270
|
phase?: number | string;
|
|
174505
175271
|
dutyCycle?: number | string;
|
|
175272
|
+
/** Small-signal AC magnitude. Raw numbers are amperes. */
|
|
175273
|
+
acMagnitude?: number | string;
|
|
175274
|
+
/** Small-signal AC phase. Raw numbers are degrees. */
|
|
175275
|
+
acPhase?: number | string;
|
|
174506
175276
|
connections?: Connections<CurrentSourcePinLabels>;
|
|
174507
175277
|
}
|
|
174508
175278
|
declare const currentSourceProps: z.ZodObject<{
|
|
@@ -177871,6 +178641,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
177871
178641
|
waveShape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
177872
178642
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
177873
178643
|
dutyCycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
178644
|
+
acMagnitude: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
178645
|
+
acPhase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
177874
178646
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["pin1", "pin2", "pos", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
177875
178647
|
}, "strip", z.ZodTypeAny, {
|
|
177876
178648
|
name: string;
|
|
@@ -178452,10 +179224,12 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
178452
179224
|
schSheetName?: string | undefined;
|
|
178453
179225
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
178454
179226
|
frequency?: number | undefined;
|
|
179227
|
+
current?: number | undefined;
|
|
178455
179228
|
waveShape?: "square" | "triangle" | "sawtooth" | "sinewave" | undefined;
|
|
178456
179229
|
phase?: number | undefined;
|
|
178457
179230
|
dutyCycle?: number | undefined;
|
|
178458
|
-
|
|
179231
|
+
acMagnitude?: number | undefined;
|
|
179232
|
+
acPhase?: number | undefined;
|
|
178459
179233
|
peakToPeakCurrent?: number | undefined;
|
|
178460
179234
|
}, {
|
|
178461
179235
|
name: string;
|
|
@@ -179039,10 +179813,12 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
179039
179813
|
schSheetName?: string | undefined;
|
|
179040
179814
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
179041
179815
|
frequency?: string | number | undefined;
|
|
179816
|
+
current?: string | number | undefined;
|
|
179042
179817
|
waveShape?: "square" | "triangle" | "sawtooth" | "sinewave" | undefined;
|
|
179043
179818
|
phase?: string | number | undefined;
|
|
179044
179819
|
dutyCycle?: string | number | undefined;
|
|
179045
|
-
|
|
179820
|
+
acMagnitude?: string | number | undefined;
|
|
179821
|
+
acPhase?: string | number | undefined;
|
|
179046
179822
|
peakToPeakCurrent?: string | number | undefined;
|
|
179047
179823
|
}>;
|
|
179048
179824
|
declare const currentSourcePins: readonly ["pin1", "left", "anode", "pos", "pin2", "right", "cathode", "neg"];
|
|
@@ -191590,4 +192366,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
191590
192366
|
}
|
|
191591
192367
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
191592
192368
|
|
|
191593
|
-
export { type AmmeterPinLabels, type AmmeterProps, type AnalogSimulationProps, type AssemblyDeviceProps, type AssemblyDevicePropsInput, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicSymbolProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type InternalCircuitElement, type InternalCircuitProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type ParsedEnclosureCutoutApertureProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogSimulationProps, assemblyDeviceProps, assemblyProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, internalCircuitProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
192369
|
+
export { type AmmeterPinLabels, type AmmeterProps, type AnalogAcSweepSimulationProps, type AnalogAnalysisSimulationBaseProps, type AnalogCapacitanceSweepParameterProps, type AnalogCurrentSweepParameterProps, type AnalogDcOperatingPointSimulationProps, type AnalogDcSweepSimulationProps, type AnalogInductanceSweepParameterProps, type AnalogResistanceSweepParameterProps, type AnalogSimulationProps, type AnalogSweepParameterProps, type AnalogTransientSimulationProps, type AnalogVoltageSweepParameterProps, type AssemblyDeviceProps, type AssemblyDevicePropsInput, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type BusProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicSymbolProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type InternalCircuitElement, type InternalCircuitProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type ParsedEnclosureCutoutApertureProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogAcSweepSimulationProps, analogAnalysisSimulationBaseProps, analogCapacitanceSweepParameterProps, analogCurrentSweepParameterProps, analogDcOperatingPointSimulationProps, analogDcSweepSimulationProps, analogInductanceSweepParameterProps, analogResistanceSweepParameterProps, analogSimulationProps, analogSweepParameterProps, analogTransientSimulationProps, analogVoltageSweepParameterProps, assemblyDeviceProps, assemblyProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, busProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutProps, differentialPairProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, internalCircuitProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|