UNPKG

@glimmer/interfaces

Version:

Common interfaces shared among all @glimmer/\* projects

9 lines (8 loc) 326 B
/** * A VariableResolutionContext explains how a variable name should be resolved. */ export type StrictResolution = 0; export type ResolveAsComponentOrHelperHeadResolution = 1; export type ResolveAsHelperHeadResolution = 5; export type ResolveAsModifierHeadResolution = 6; export type ResolveAsComponentHeadResolution = 7;