mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
* Add jslib as a dependency * Cleanup tsconfig, webpack, add jslib-angular to package.json * Update all import paths * Add back @types/node. * Lint * Remove dummy module * Remove merge conflict * Group imports * Bump jslib
21 lines
466 B
TypeScript
21 lines
466 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
import { OrganizationUserUserDetailsResponse } from 'jslib-common/models/response/organizationUserResponse';
|
|
|
|
type BulkStatusEntry = {
|
|
user: OrganizationUserUserDetailsResponse,
|
|
error: boolean,
|
|
message: string,
|
|
};
|
|
|
|
@Component({
|
|
selector: 'app-bulk-status',
|
|
templateUrl: 'bulk-status.component.html',
|
|
})
|
|
export class BulkStatusComponent {
|
|
|
|
users: BulkStatusEntry[];
|
|
loading: boolean = false;
|
|
|
|
}
|