mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-07 21:10:55 +08:00
11 lines
199 B
TypeScript
11 lines
199 B
TypeScript
class DeviceTokenRequest {
|
|
pushToken: string;
|
|
|
|
constructor() {
|
|
this.pushToken = null;
|
|
}
|
|
}
|
|
|
|
export { DeviceTokenRequest };
|
|
(window as any).DeviceTokenRequest = DeviceTokenRequest;
|