mirror of
https://github.com/bitwarden/browser
synced 2026-02-13 15:03:26 +00:00
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
import { ScimProviderType } from "../../enums";
|
|
|
|
export class ScimConfigRequest {
|
|
constructor(
|
|
private enabled: boolean,
|
|
private scimProvider: ScimProviderType = null,
|
|
) {}
|
|
}
|