1
0
Fork 0
tera-wallet/src/pages/my/type.ts

13 lines
265 B
TypeScript
Raw Normal View History

import { Account } from '../../rpc/types';
import { DefaultProps } from '../../models/types';
export type MyIndexProps = MyProps & DefaultProps
export interface MyProps {
accounts: Account[];
}
export interface MyState {
nickName: string;
avatarUrl: any;
}