Skip to content

Type Alias: DefaultModelResolution

Makaio Framework


Makaio Framework / services-core / DefaultModelResolution

DefaultModelResolution = { kind: "resolved"; target: ResolvedDefaultTarget; } | { kind: "ambiguous"; matches: AmbiguousMatch[]; } | { kind: "not-found"; }

Defined in: ../../../packages/services/core/src/canonical-model/resolver-deps.ts:21

Result of bare model default resolution.

  • DefaultModelResolution
    • | { readonly kind: 'resolved'; readonly target: ResolvedDefaultTarget } | { readonly kind: 'ambiguous'; readonly matches: AmbiguousMatch[] } | { readonly kind: 'not-found' }
      • { readonly kind: 'resolved'; readonly target: ResolvedDefaultTarget }
      • { readonly kind: 'ambiguous'; readonly matches: AmbiguousMatch[] }
      • { readonly kind: 'not-found' }
type DefaultModelResolution = {
kind: 'resolved' | 'ambiguous' | 'not-found';
};