UNPKG

326 BTypeScriptView Raw
1/**
2 * A VariableResolutionContext explains how a variable name should be resolved.
3 */
4export type StrictResolution = 0;
5export type ResolveAsComponentOrHelperHeadResolution = 1;
6export type ResolveAsHelperHeadResolution = 5;
7export type ResolveAsModifierHeadResolution = 6;
8export type ResolveAsComponentHeadResolution = 7;