Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
claviska committed Nov 17, 2021
1 parent 1a4f330 commit d140dc2
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/components/textarea/textarea.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,7 @@ export default class SlTextarea extends LitElement {
@property({ type: Boolean, reflect: true }) invalid = false;

/** The textarea's autocaptialize attribute. */
@property() autocapitalize:
| 'off'
| 'none'
| 'on'
| 'sentences'
| 'words'
| 'characters';
@property() autocapitalize: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';

/** The textarea's autocorrect attribute. */
@property() autocorrect: string;
Expand Down

0 comments on commit d140dc2

Please sign in to comment.