isDeclaredProperty: Use optional-boolean idiom

As elsewhere in the compiler code
This commit is contained in:
Nathan Shively-Sanders
2016-09-28 14:14:53 -07:00
parent 484e66fa09
commit 62c5bda3bb

View File

@@ -2536,7 +2536,7 @@ namespace ts {
/* @internal */
export interface SpreadElementType extends ResolvedType {
isDeclaredProperty: boolean | undefined;
isDeclaredProperty?: boolean;
}
/* @internal */