mirror of
https://github.com/desktop/desktop
synced 2024-10-31 11:07:25 +00:00
Interfaces instead of types
This commit is contained in:
parent
60ce7c7c9c
commit
54babe12ab
1 changed files with 2 additions and 2 deletions
|
@ -5,12 +5,12 @@ import UsersStore from './users-store'
|
|||
import User from './user'
|
||||
import NotLoggedIn from './not-logged-in'
|
||||
|
||||
type AppState = {
|
||||
interface AppState {
|
||||
selectedRow: number,
|
||||
user: User
|
||||
}
|
||||
|
||||
type AppProps = {
|
||||
interface AppProps {
|
||||
usersStore: UsersStore,
|
||||
style?: Object
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue