claude-flow
Version:
Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)
9 lines • 394 B
TypeScript
export type AuthBridgeResponse = string | {
data: string;
};
export interface AuthBridge {
addEventListener: (eventName: string, callback: (response: AuthBridgeResponse) => void) => void;
postMessage: (message: string) => void;
removeEventListener: (eventName: string, callback: (response: AuthBridgeResponse) => void) => void;
}
//# sourceMappingURL=AuthBridge.d.ts.map