mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
added flag as argument to checkTypeRelatedTo
This commit is contained in:
@@ -403,6 +403,12 @@ namespace ts {
|
||||
FailedAndReported = 3
|
||||
}
|
||||
|
||||
/* @internal */
|
||||
export const enum RelationComparisonFlags {
|
||||
None = 0,
|
||||
ExtendingClass = 0x00000001
|
||||
}
|
||||
|
||||
export interface Node extends TextRange {
|
||||
kind: SyntaxKind;
|
||||
flags: NodeFlags;
|
||||
|
||||
Reference in New Issue
Block a user