UNPKG

@speckle/shared

Version:

Shared code between various Speckle JS packages

7 lines (6 loc) 178 B
export const AppState = { STARTING: 'starting', RUNNING: 'running', SHUTTINGDOWN: 'shuttingdown' } as const export type AppState = (typeof AppState)[keyof typeof AppState]