mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 05:37:51 +00:00
e1c42405a1
Update balena-sdk from 13.6.0 to 14.8.0 Change-type: patch
11 lines
253 B
TypeScript
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];
|
|
};
|
|
}
|