bitwarden-estensione-browser/src/models/response/globalDomainResponse.ts

15 lines
350 B
TypeScript
Raw Normal View History

class GlobalDomainResponse {
type: number;
domains: string[];
excluded: number[];
constructor(response: any) {
this.type = response.Type;
this.domains = response.Domains;
this.excluded = response.Excluded;
}
}
export { GlobalDomainResponse };
(window as any).GlobalDomainResponse = GlobalDomainResponse;