2020-12-28 10:11:26 +01:00
|
|
|
// TS types for elements on the Config pages
|
|
|
|
|
|
|
|
export interface TextFieldProps {
|
2020-12-29 23:47:31 +01:00
|
|
|
handleResetValue: ({ fieldName }) => void;
|
2020-12-28 10:11:26 +01:00
|
|
|
fieldName: string;
|
2020-12-29 23:47:31 +01:00
|
|
|
initialValues: any;
|
2020-12-28 10:11:26 +01:00
|
|
|
type: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UpdateArgs {
|
|
|
|
fieldName: string;
|
|
|
|
value: string;
|
|
|
|
path?: string;
|
|
|
|
}
|