12 lines
311 B
TypeScript
12 lines
311 B
TypeScript
import type { IUsersState } from '@/store/modules/users/types'
|
|
import type { IPagination } from '@/types/api'
|
|
import type { IUserProfile } from '@/types/user'
|
|
|
|
export const usersState: IUsersState = {
|
|
user: <IUserProfile>{},
|
|
users: [],
|
|
loading: false,
|
|
isSuccess: false,
|
|
pagination: <IPagination>{},
|
|
}
|