All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.jupyter.parser.notebook.RawCell.kt Maven / Gradle / Ivy

The newest version!
package org.jetbrains.jupyter.parser.notebook

import kotlinx.serialization.json.JsonObject

public class RawCell(
    override val id: String?,
    override val metadata: RawCellMetadata,
    override val source: String,
    override val attachments: JsonObject? = null,
) : CellWithAttachments() {
    override val type: Type get() = Type.RAW
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy