Move type

This commit is contained in:
Adria Navarro 2024-12-30 14:49:36 +01:00
parent 184815ac7d
commit cca22fe864
2 changed files with 6 additions and 6 deletions

View File

@ -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[]>

View File

@ -4,8 +4,3 @@ export interface UIUser extends User {
sessionId: string
gridMetadata?: { focusedCellId?: string }
}
export interface UIEnrichedUser extends UIUser {
color: string
label: string
}