fix: run linter
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { create } from 'zustand'
|
||||
import { UserResponse } from '../client/response'
|
||||
import { GetCurrentUser, SetUserName } from '../client/controllers'
|
||||
import { UserResponse } from '../client/response'
|
||||
|
||||
export type UserActions = {
|
||||
sync: () => Promise<UserResponse | undefined>
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
import { create } from 'zustand'
|
||||
import { ItemPriceResponse, OrderItemPriceResponse, OrderFilledResponse } from '../client/response'
|
||||
import * as ItemController from '../client/controllers/ItemController'
|
||||
import { CreateItemQuery } from '../client/queries/CreateItemQuery'
|
||||
import { SetItemPriceQuery } from '../client/queries/SetItemPriceQuery'
|
||||
import { blob } from 'stream/consumers'
|
||||
import { ItemPriceResponse, OrderFilledResponse, OrderItemPriceResponse } from '../client/response'
|
||||
|
||||
export type ItemData = {
|
||||
items: ItemPriceResponse[],
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { create } from 'zustand'
|
||||
import { OrderResponse } from '../client/response'
|
||||
import { OrderTableQuery } from '../client/request/GetOrderTableRequest'
|
||||
import * as OrderController from '../client/controllers/OrderController'
|
||||
import { OrderTableQuery } from '../client/request/GetOrderTableRequest'
|
||||
import { OrderResponse } from '../client/response'
|
||||
|
||||
type OrderData = {
|
||||
orders: OrderResponse[]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { create } from 'zustand'
|
||||
import { ActivateUser, CreatePosition, DeactivateUser, DemoteUser, GetUserTable, PromoteUser, SetUserPosition } from '../client/controllers'
|
||||
import { UserResponse } from '../client/response'
|
||||
import { GetUserTable, SetUserPosition, PromoteUser, DemoteUser, DeactivateUser, CreatePosition, ActivateUser } from '../client/controllers'
|
||||
type UserData = {
|
||||
tableUsers: UserResponse[]
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
export * from './AuthenticationProvider'
|
||||
export * from './AuthenticationProvider';
|
||||
|
||||
Reference in New Issue
Block a user