9 lines
235 B
TypeScript
9 lines
235 B
TypeScript
export * as Workspace from "./workspace"
|
|
|
|
import { WorkspaceEvent } from "./workspace-event"
|
|
import { WorkspaceID } from "./workspace-id"
|
|
|
|
export const ID = WorkspaceID
|
|
export type ID = WorkspaceID
|
|
|
|
export const Event = WorkspaceEvent
|