Files
mpc-framework/src/index.ts
2025-05-05 16:45:53 +10:00

15 lines
512 B
TypeScript

export { default as Protocol } from './Protocol.js';
export { default as Session } from './Session.js';
export {
type Circuit,
type Engine,
type EngineSession,
type MpcParticipantSettings,
type MpcSettings,
} from 'mpc-framework-common';
// This is NOT exported because it is almost never wanted and depends
// unnecessarily on msgpackr. Importing msgpackr creates a lot of permissions
// noise in Deno on startup.
// export { default as PlaintextEngine } from './PlaintextEngine/PlaintextEngine.js';