mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
12 lines
436 B
TypeScript
12 lines
436 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { BitActionDirective } from "./bit-action.directive";
|
|
import { BitSubmitDirective } from "./bit-submit.directive";
|
|
import { BitFormButtonDirective } from "./form-button.directive";
|
|
|
|
@NgModule({
|
|
imports: [BitActionDirective, BitFormButtonDirective, BitSubmitDirective],
|
|
exports: [BitActionDirective, BitFormButtonDirective, BitSubmitDirective],
|
|
})
|
|
export class AsyncActionsModule {}
|