tscircuit 0.0.1739 → 0.0.1740
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/static-assets.d.ts +11 -0
- package/globals.d.ts +11 -0
- package/package.json +1 -1
package/dist/static-assets.d.ts
CHANGED
|
@@ -13,6 +13,17 @@ declare module "*.kicad_mod" {
|
|
|
13
13
|
export default src
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
declare module "*.kicad_pcb" {
|
|
17
|
+
import type { AnyCircuitElement } from "circuit-json"
|
|
18
|
+
|
|
19
|
+
export const Board: (props: any) => any
|
|
20
|
+
export const boardContentCircuitJson: AnyCircuitElement[]
|
|
21
|
+
export const circuitJson: AnyCircuitElement[]
|
|
22
|
+
|
|
23
|
+
const circuitJsonDefault: AnyCircuitElement[]
|
|
24
|
+
export default circuitJsonDefault
|
|
25
|
+
}
|
|
26
|
+
|
|
16
27
|
declare module "*.glb" {
|
|
17
28
|
const src: string
|
|
18
29
|
export default src
|
package/globals.d.ts
CHANGED
|
@@ -13,6 +13,17 @@ declare module "*.kicad_mod" {
|
|
|
13
13
|
export default src
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
declare module "*.kicad_pcb" {
|
|
17
|
+
import type { AnyCircuitElement } from "circuit-json"
|
|
18
|
+
|
|
19
|
+
export const Board: (props: any) => any
|
|
20
|
+
export const boardContentCircuitJson: AnyCircuitElement[]
|
|
21
|
+
export const circuitJson: AnyCircuitElement[]
|
|
22
|
+
|
|
23
|
+
const circuitJsonDefault: AnyCircuitElement[]
|
|
24
|
+
export default circuitJsonDefault
|
|
25
|
+
}
|
|
26
|
+
|
|
16
27
|
declare module "*.glb" {
|
|
17
28
|
const src: string
|
|
18
29
|
export default src
|