com.avito.utils.ExistingDirectory.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of files Show documentation
Show all versions of files Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
package com.avito.utils
import java.io.File
public interface ExistingDirectory {
public val dir: File
public operator fun plus(path: String): ExistingDirectory
public fun file(name: String): ExistingFile
}