UNPKG

@datalayer/core

Version:

[![Datalayer](https://assets.datalayer.tech/datalayer-25.svg)](https://datalayer.io)

23 lines (22 loc) 554 B
/* * Copyright (c) 2023-2025 Datalayer, Inc. * Distributed under the terms of the Modified BSD License. */ /** * Constants for the Datalayer SDK. * * @module client/constants */ /** * Item types used throughout the SDK and consuming applications. * These constants define the type identifiers for different Datalayer items. * Values match what the Datalayer API returns. */ export const ItemTypes = { NOTEBOOK: 'notebook', LEXICAL: 'document', EXERCISE: 'exercise', CELL: 'cell', SPACE: 'space', UNKNOWN: 'unknown', };