mirror of
https://github.com/bitwarden/browser
synced 2026-01-28 15:23:53 +00:00
* [PM-30906] Refactor AutoConfirmNudgeService to be Browser specific and add additional documentation detailing when this is necessary * [PM-30906] Add README.md for custom nudge services
9 lines
457 B
TypeScript
9 lines
457 B
TypeScript
// Note: Nudge related code is exported from `libs/angular` because it is consumed by multiple
|
|
// `libs/*` packages. Exporting from the `libs/vault` package creates circular dependencies.
|
|
export { NudgesService, NudgeStatus, NudgeType } from "./services/nudges.service";
|
|
export {
|
|
AUTOFILL_NUDGE_SERVICE,
|
|
AUTO_CONFIRM_NUDGE_SERVICE,
|
|
} from "./services/nudge-injection-tokens";
|
|
export { AutoConfirmNudgeService } from "./services/custom-nudges-services";
|