balena-cli
Version:
The official balena Command Line Interface
4 lines (3 loc) • 323 B
TypeScript
import type { OptionalNavigationResource } from 'balena-sdk';
export declare const getExpanded: <T extends object>(obj: OptionalNavigationResource<T>) => T | undefined;
export declare const getExpandedProp: <T extends object, K extends keyof T>(obj: OptionalNavigationResource<T>, key: K) => NonNullable<T[K]> | undefined;