Skip to content

Commit

Permalink
Types: add 'middle' to borderSkipped (#10283)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurkle committed Apr 5, 2022
1 parent a39f694 commit 4b5ca7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/index.esm.d.ts
Expand Up @@ -1970,10 +1970,10 @@ export interface BarOptions extends Omit<CommonElementOptions, 'borderWidth'> {
base: number;

/**
* Skipped (excluded) border: 'start', 'end', 'left', 'right', 'bottom', 'top' or false (none).
* Skipped (excluded) border: 'start', 'end', 'left', 'right', 'bottom', 'top', 'middle' or false (none).
* @default 'start'
*/
borderSkipped: 'start' | 'end' | 'left' | 'right' | 'bottom' | 'top' | false;
borderSkipped: 'start' | 'end' | 'left' | 'right' | 'bottom' | 'top' | 'middle' | false;

/**
* Border radius
Expand Down

0 comments on commit 4b5ca7f

Please sign in to comment.