mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 10:13:31 +00:00
* Migrate generators to use standalone and control flow * Resolve feedback * Add variable for account * Fix generators
16 lines
898 B
TypeScript
16 lines
898 B
TypeScript
/**
|
|
* This file contains the public interface for the generator components library.
|
|
*
|
|
* Be mindful of what you export here, as those components should be considered stable
|
|
* and part of the public API contract.
|
|
*/
|
|
|
|
export { CredentialGeneratorComponent } from "./credential-generator.component";
|
|
export { CredentialGeneratorHistoryComponent } from "./credential-generator-history.component";
|
|
export { CredentialGeneratorHistoryDialogComponent } from "./credential-generator-history-dialog.component";
|
|
export { EmptyCredentialHistoryComponent } from "./empty-credential-history.component";
|
|
export { GeneratorModule } from "./generator.module";
|
|
export { GeneratorServicesModule, SYSTEM_SERVICE_PROVIDER } from "./generator-services.module";
|
|
export { PasswordGeneratorComponent } from "./password-generator.component";
|
|
export { UsernameGeneratorComponent } from "./username-generator.component";
|