mirror of
https://github.com/bitwarden/jslib
synced 2026-01-07 02:53:13 +00:00
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
import { PolicyType } from '../../enums/policyType';
|
|
|
|
export class PolicyRequest {
|
|
type: PolicyType;
|
|
enabled: boolean;
|
|
data: any;
|
|
}
|