UNPKG

animiassumenda

Version:

Blox live, desktop app for managing staking accounts

17 lines (15 loc) 253 B
export type State = { isLoading: boolean; isUpdateLoading: boolean; data: { name: string; id: number; creatorId: number; createdAt: Date | string; }; error: string; }; export type Action = { type: string; payload: any; };