Skip to content

Commit

Permalink
Merge pull request #8720 from Agoric/ta/typedoc-vats
Browse files Browse the repository at this point in the history
more typedoc
  • Loading branch information
mergify[bot] authored Jan 17, 2024
2 parents f85d35b + b6f8b6d commit 51f64c2
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/SwingSet/src/types-external.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export {};
* @property {SwingSetConfigDescriptor} [bundles]
* @property {BundleFormat} [bundleFormat] the bundle source / import bundle
* format.
* @property {*} [devices]
* @property {any} [devices]
*/
/**
* @typedef {KernelOptions & SwingSetOptions} SwingSetConfig a swingset config object
Expand Down Expand Up @@ -232,7 +232,7 @@ export {};
* Vat Creation and Management
*
* @typedef { string } BundleID
* @typedef {*} BundleCap
* @typedef {any} BundleCap
* @typedef { { moduleFormat: 'endoZipBase64', endoZipBase64: string, endoZipBase64Sha512: string } } EndoZipBase64Bundle
*
* @typedef { unknown } Meter
Expand Down
8 changes: 8 additions & 0 deletions packages/SwingSet/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": [
"../../typedoc.base.json"
],
"entryPoints": [
"src/index.js",
]
}
12 changes: 12 additions & 0 deletions packages/smart-wallet/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"extends": [
"../../typedoc.base.json"
],
"entryPoints": [
"src/invitations.js",
"src/offers.js",
"src/smartWallet.js",
"src/types.d.ts",
"src/walletFactory.js",
]
}
2 changes: 1 addition & 1 deletion packages/swingset-liveslots/typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"entryPoints": [
"src/index.js",
"src/types.js",
"src/vatDataTypes.js",
"src/vatDataTypes.d.ts",
]
}
3 changes: 3 additions & 0 deletions packages/vats/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Vats

Builders for Vats on the Agoric chain that aren't contracts.
9 changes: 9 additions & 0 deletions packages/vats/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": [
"../../typedoc.base.json"
],
"entryPoints": [
"index.js",
"./src/core/types-ambient.d.ts",
]
}
8 changes: 5 additions & 3 deletions packages/zoe/typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@
"../../typedoc.base.json"
],
"entryPoints": [
"src/contractFacet/internal-types.js",
"src/contractFacet/types-ambient.d.ts",
"src/contractSupport/index.js",
"src/contractSupport/types.js",
"src/contractFacet/types-ambient.d.ts",
"src/contractFacet/types.ts",
"src/types.js",
"src/zoeService/types.js",
"src/zoeService/utils.d.ts",
"src/zoeService/zoe.js",
"src/types.js",
"tools/internal-types.js",
"tools/manualTimer.js",
"tools/types-ambient.js",
]
}
8 changes: 8 additions & 0 deletions packages/zone/typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": [
"../../typedoc.base.json"
],
"entryPoints": [
"src/index.js",
]
}

0 comments on commit 51f64c2

Please sign in to comment.