@typescript-deploys/pr-build 5.0.0-pr-51492-2 → 5.0.0-pr-50996-9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6719,6 +6719,7 @@ declare namespace ts {
6719
6719
  interface EnumType extends Type {
6720
6720
  }
6721
6721
  enum ObjectFlags {
6722
+ None = 0,
6722
6723
  Class = 1,
6723
6724
  Interface = 2,
6724
6725
  Reference = 4,
@@ -6889,6 +6890,7 @@ declare namespace ts {
6889
6890
  declaration?: IndexSignatureDeclaration;
6890
6891
  }
6891
6892
  enum InferencePriority {
6893
+ None = 0,
6892
6894
  NakedTypeVariable = 1,
6893
6895
  SpeculativeTuple = 2,
6894
6896
  SubstituteSource = 4,
@@ -9431,10 +9433,6 @@ declare namespace ts {
9431
9433
  affected: SourceFile | Program;
9432
9434
  } | undefined;
9433
9435
  interface BuilderProgramHost {
9434
- /**
9435
- * return true if file names are treated with case sensitivity
9436
- */
9437
- useCaseSensitiveFileNames(): boolean;
9438
9436
  /**
9439
9437
  * If provided this would be used this hash instead of actual file shape text for detecting changes
9440
9438
  */