mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 21:36:50 -05:00
Made 'expression' non-optional in 'CaseClause'.
This commit is contained in:
@@ -1195,7 +1195,7 @@ namespace ts {
|
||||
|
||||
// @kind(SyntaxKind.CaseClause)
|
||||
export interface CaseClause extends Node {
|
||||
expression?: Expression;
|
||||
expression: Expression;
|
||||
statements: NodeArray<Statement>;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user