This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/src/containers/setting/ISettingComponentState.ts
2018-12-07 09:45:06 +07:00

26 lines
330 B
TypeScript

export interface ISettingComponentState {
[key: string]: any
/**
* Password input value
*/
passwordInput: string
/**
* Password input error text
*/
passwordInputError: string
/**
* Confirm input value
*/
confirmInput: string
/**
* Confirm input error
*/
confirmInputError: string
}