CssChunk

data class CssChunk(val ids: Array<String>, val key: String, val css: String)

SSR: CSS Chunk

Data class which holds a chunk of CSS code, which should be emitted as part of a larger SSR run. This class is used in particular for integration with Emotion's SSR engine.

Parameters

ids

CSS IDs held by this chunk.

key

Unique key identifying this chunk.

css

CSS code held by this chunk.

Constructors

Link copied to clipboard
constructor(ids: Array<String>, key: String, css: String)

Properties

Link copied to clipboard
val css: String
Link copied to clipboard
Link copied to clipboard
val key: String

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String