tscircuit 0.0.1739-libonly → 0.0.1740-libonly

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.
@@ -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
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "main": "dist/index.js",
4
4
  "types": "dist/index.d.ts",
5
5
  "type": "module",
6
- "version": "0.0.1739-libonly",
6
+ "version": "0.0.1740-libonly",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",