export interface objectInterface {
	[propName: string]: any
}

export interface Action {
	type: string,
	[propName: string]: any
}

export interface Entity extends Record<string, any> {
	status: object
}