Files
doneit-web/src/app/services/device.service.ts
T

21 lines
292 B
TypeScript
Raw Normal View History

2024-02-15 13:03:38 +01:00
import { Injectable } from '@angular/core';
import { Platform } from '@ionic/angular';
@Injectable({
providedIn: 'root'
})
export class DeviceService {
constructor( private platform: Platform,) { }
isTableDivice() {
return false;
}
isDesktop() {
return true;
}
}