Skip to content

Commit 83212e7

Browse files
committed
Accept API baseline changes
1 parent 19f1d3b commit 83212e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1675,7 +1675,7 @@ declare namespace ts {
16751675
export type FlowNode = AfterFinallyFlow | PreFinallyFlow | FlowStart | FlowLabel | FlowAssignment | FlowCall | FlowCondition | FlowSwitchClause | FlowArrayMutation;
16761676
export interface FlowNodeBase {
16771677
flags: FlowFlags;
1678-
id: number | undefined;
1678+
id?: number;
16791679
}
16801680
export interface FlowLock {
16811681
locked?: boolean;

tests/baselines/reference/api/typescript.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1675,7 +1675,7 @@ declare namespace ts {
16751675
export type FlowNode = AfterFinallyFlow | PreFinallyFlow | FlowStart | FlowLabel | FlowAssignment | FlowCall | FlowCondition | FlowSwitchClause | FlowArrayMutation;
16761676
export interface FlowNodeBase {
16771677
flags: FlowFlags;
1678-
id: number | undefined;
1678+
id?: number;
16791679
}
16801680
export interface FlowLock {
16811681
locked?: boolean;

0 commit comments

Comments
 (0)