balena-cli/typings/global.d.ts
Pagan Gazzard e1c42405a1 Update balena-sdk to 14.x
Update balena-sdk from 13.6.0 to 14.8.0

Change-type: patch
2020-08-07 21:06:07 +00:00

11 lines
253 B
TypeScript

import { Application, DeviceType, Device } from 'balena-sdk';
declare global {
type ApplicationWithDeviceType = Application & {
is_for__device_type: [DeviceType];
};
type DeviceWithDeviceType = Device & {
is_of__device_type: [DeviceType];
};
}