Skip to content

Commit

Permalink
fix missing embed loc types, again (#379)
Browse files Browse the repository at this point in the history
refs #378
  • Loading branch information
bartveneman authored Dec 31, 2023
1 parent 5f9be0f commit 332ac98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export function analyze(css, options = {}) {
let embedSize = 0
let embedTypes = {
total: 0,
/** @type {Map<string, { size: number, count: number } & ({ __unstable__uniqueWithLocations?: undefined } | ({ offset: number, line: number, column: number, length: number }[])) }>} */
/** @type {Map<string, { size: number, count: number } & ({ __unstable__uniqueWithLocations?: undefined } | ({ __unstable__uniqueWithLocations: { offset: number, line: number, column: number, length: number }[] })) }>} */
unique: new Map()
}

Expand Down

0 comments on commit 332ac98

Please sign in to comment.