Move type
This commit is contained in:
parent
184815ac7d
commit
cca22fe864
|
@ -1,7 +1,12 @@
|
|||
import { writable, get, derived, Writable, Readable } from "svelte/store"
|
||||
import { helpers } from "@budibase/shared-core"
|
||||
import { Store as StoreContext } from "."
|
||||
import { UIEnrichedUser, UIUser } from "@budibase/types"
|
||||
import { UIUser } from "@budibase/types"
|
||||
|
||||
interface UIEnrichedUser extends UIUser {
|
||||
color: string
|
||||
label: string
|
||||
}
|
||||
|
||||
interface UsersStore {
|
||||
users: Writable<UIUser[]>
|
||||
|
|
|
@ -4,8 +4,3 @@ export interface UIUser extends User {
|
|||
sessionId: string
|
||||
gridMetadata?: { focusedCellId?: string }
|
||||
}
|
||||
|
||||
export interface UIEnrichedUser extends UIUser {
|
||||
color: string
|
||||
label: string
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue