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

com.autonomousapps.kit.render.Element.kt Maven / Gradle / Ivy

The newest version!
// Copyright (c) 2024. Tony Robalik.
// SPDX-License-Identifier: Apache-2.0
package com.autonomousapps.kit.render

public sealed interface Element {

  public fun render(scribe: Scribe): String

  public fun start(indent: Int): String = " ".repeat(indent)

  public interface Block : Element {
    public val name: String
  }

  public interface Line : Element
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy