Files
hoppscotch/packages/hoppscotch-common/src/services/new-workspace/workspace.ts
jamesgeorge007 29e25b0ead refactor: initial iterations
Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
2024-05-22 20:10:50 +05:30

28 lines
461 B
TypeScript

import { Component } from "vue"
export type Workspace = {
providerID: string
workspaceID: string
name: string
collectionsAreReadonly: boolean
}
export type WorkspaceCollection = {
providerID: string
workspaceID: string
collectionID: string
name: string
}
export type WorkspaceDecor = {
headerComponent?: Component
headerCurrentIcon?: Component | object
workspaceSelectorComponent?: Component
workspaceSelectorPriority?: number
}