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

main.io.nlopez.compose.core.ComposeKtConfig.kt Maven / Gradle / Ivy

There is a newer version: 0.4.19
Show newest version
// Copyright 2023 Nacho Lopez
// SPDX-License-Identifier: Apache-2.0
package io.nlopez.compose.core

interface ComposeKtConfig {
    fun getInt(key: String, default: Int): Int
    fun getString(key: String, default: String?): String?
    fun getList(key: String, default: List): List
    fun getSet(key: String, default: Set): Set
    fun getBoolean(key: String, default: Boolean): Boolean
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy