@connectv/core
Version:
agent-based reactive programming library for typescript/javascript
12 lines (11 loc) • 346 B
TypeScript
/**
*
* This error is thrown when an agent which has no explicit specification
* of its entry and exit pins is used as a partial flow.
* [Read this](https://connective.dev/docs/agent#implicit-connection) for more
* information on partial flows.
*
*/
export declare class ImproperPartialFlow extends Error {
constructor(object: any);
}