mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
* Introduce MessageSender * Update `messageSenderFactory` * Remove Comment * Use BrowserApi * Update Comment * Rename to CommandDefinition * Add More Documentation to MessageSender * Add `EMPTY` helpers and remove NoopMessageSender * Calm Down Logging * Limit Logging On Known Errors * Use `messageStream` Parameter Co-authored-by: Matt Gibson <mgibson@bitwarden.com> * Add eslint rules * Update Error Handling Co-authored-by: Cesar Gonzalez <cesar.a.gonzalezcs@gmail.com> * Delete Lazy Classes In Favor of Observable Factories * Remove Fido Messages --------- Co-authored-by: Matt Gibson <mgibson@bitwarden.com> Co-authored-by: Cesar Gonzalez <cesar.a.gonzalezcs@gmail.com>
6 lines
207 B
TypeScript
6 lines
207 B
TypeScript
// Built in implementations
|
|
export { SubjectMessageSender } from "./subject-message.sender";
|
|
|
|
// Helpers meant to be used only by other implementations
|
|
export { tagAsExternal, getCommand } from "./helpers";
|