KTNB-235, PY-64586: Fix runtime configuration and mark classes in intellij.notebooks.tables as internal

GitOrigin-RevId: 3fc10921590edf4d9a8c2b9255634d3e78b35841
This commit is contained in:
Ilya Muradyan
2024-05-13 16:26:21 +02:00
committed by intellij-monorepo-bot
parent 01f61622b7
commit 071d45b386
4 changed files with 10 additions and 0 deletions

View File

@@ -9,5 +9,6 @@
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="kotlin-stdlib" level="project" />
<orderEntry type="module" module-name="intellij.platform.util" />
</component>
</module>

View File

@@ -1,5 +1,8 @@
package com.intellij.notebooks.tables
import com.intellij.openapi.util.IntellijInternalApi
@IntellijInternalApi
enum class CommandOutputType {
STREAM, DISPLAY
}

View File

@@ -1,3 +1,6 @@
package com.intellij.notebooks.tables
import com.intellij.openapi.util.IntellijInternalApi
@IntellijInternalApi
interface TableCommandParameters

View File

@@ -1,5 +1,8 @@
package com.intellij.notebooks.tables
import com.intellij.openapi.util.IntellijInternalApi
@IntellijInternalApi
enum class TableCommandType {
DF_INFO, SLICE, DF_DESCRIBE
}