mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
14 lines
357 B
TypeScript
14 lines
357 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
export interface FormFeedbackProps extends React.HTMLAttributes<HTMLElement> {
|
|
[key: string]: any;
|
|
tag?: string;
|
|
cssModule?: CSSModule;
|
|
valid?: boolean;
|
|
tooltip?: boolean;
|
|
}
|
|
|
|
declare class FormFeedback extends React.Component<FormFeedbackProps> {}
|
|
export default FormFeedback;
|