UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

13 lines (12 loc) 297 B
export interface FeatureModel { 'feature-resource-version'?: string; bundles?: Bundle[]; 'execution-environment:JSON|false'?: { framework?: Bundle; }; [x: string]: unknown; } export type Bundle = string | BundleObject; export interface BundleObject { id: string; }