Skip to content

Commit

Permalink
fix: 取消Point的readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
any86 committed Jul 19, 2019
1 parent 3f8339a commit f4fc469
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export type RecognizerStatus = 'possible' | 'recognized' | 'began' | 'changed' |
export type eventType = 'start' | 'move' | 'end' | 'cancel';

export interface Point {
readonly x: number;
readonly y: number;
x: number;
y: number;
}

export interface BaseInput {
Expand Down

0 comments on commit f4fc469

Please sign in to comment.