Skip to content

Commit

Permalink
chore: code-style
Browse files Browse the repository at this point in the history
  • Loading branch information
Yash-Singh1 committed Jan 9, 2024
1 parent 6c745bc commit 787c934
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/utils/parse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ interface Line {
// Would import this from acorn, but tsup type resolution is broken

export interface SourceLocation {
source?: string | null
start: Position
end: Position
source?: string | null;
start: Position;
end: Position;
}

export interface Position {
/** 1-based */
line: number
line: number;
/** 0-based */
column: number
column: number;
}

export interface ParsingResult {
Expand Down

0 comments on commit 787c934

Please sign in to comment.