10 lines
361 B
TypeScript
10 lines
361 B
TypeScript
/**
|
|
* Barrel file re-exporting all module applet definitions.
|
|
* Imported in canvas.html to register applets client-side
|
|
* (applet defs contain functions, can't be JSON-serialized).
|
|
*/
|
|
|
|
export { govApplets } from "../modules/rgov/applets";
|
|
export { flowsApplets } from "../modules/rflows/applets";
|
|
export { walletApplets } from "../modules/rwallet/applets";
|