SDK docs version: v0.1.25
Get devicetype.
getDeviceType(): Promise<number>;
Promise<number>
0
1
2
3
4
5
import { PluginManager } from 'sn-plugin-lib'; /** * Get devicetype example. */ export async function exampleGetDeviceType() { const deviceType = await PluginManager.getDeviceType(); return deviceType; }