eslint: use semicolon TypeScript delimeter

This commit is contained in:
Alex Gleason
2023-10-02 13:54:02 -05:00
parent 702124fb79
commit 645ce60a5f
479 changed files with 1928 additions and 1938 deletions

View File

@ -7,15 +7,15 @@ import Stack from '../stack/stack';
interface IFormGroup {
/** Input label message. */
labelText?: React.ReactNode
labelText?: React.ReactNode;
/** Input label tooltip message. */
labelTitle?: string
labelTitle?: string;
/** Input hint message. */
hintText?: React.ReactNode
hintText?: React.ReactNode;
/** Input errors. */
errors?: string[]
errors?: string[];
/** Elements to display within the FormGroup. */
children: React.ReactNode
children: React.ReactNode;
}
/** Input container with label. Renders the child. */