Skip to content

Commit

Permalink
prettier warning
Browse files Browse the repository at this point in the history
  • Loading branch information
shauns committed Jan 8, 2025
1 parent 2017eac commit 0562adf
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions packages/cli-kit/src/private/node/ui/components/TokenizedText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,30 +34,30 @@ export interface BoldToken {
export type Token =
| string
| {
command: string
}
command: string
}
| LinkToken
| {
char: string
}
char: string
}
| UserInputToken
| {
subdued: string
}
subdued: string
}
| {
filePath: string
}
filePath: string
}
| ListToken
| BoldToken
| {
info: string
}
info: string
}
| {
warn: string
}
warn: string
}
| {
error: string
}
error: string
}

export type InlineToken = Exclude<Token, ListToken>
export type TokenItem<T extends Token = Token> = T | T[]
Expand Down

0 comments on commit 0562adf

Please sign in to comment.