From 810a3abf13e18570d35808a1172dd34f516c0493 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Wed, 25 Apr 2018 08:03:34 +0200 Subject: Upgrade Kotlin to 1.2.40 and kotlin-fronted-plugin to 0.0.30 (with webpack 4) Dependencies on kotlinx.serialization and kotlinx.coroutines. --- src/main/kotlin/pl/treksoft/kvision/core/Types.kt | 29 ++++++++++++----------- 1 file changed, 15 insertions(+), 14 deletions(-) (limited to 'src/main/kotlin') diff --git a/src/main/kotlin/pl/treksoft/kvision/core/Types.kt b/src/main/kotlin/pl/treksoft/kvision/core/Types.kt index 0817b3ae..1b4f011d 100644 --- a/src/main/kotlin/pl/treksoft/kvision/core/Types.kt +++ b/src/main/kotlin/pl/treksoft/kvision/core/Types.kt @@ -21,24 +21,25 @@ */ package pl.treksoft.kvision.core - /** - * This type is used for accessing resources with CommonJS **require** function. - * - * e.g. require("./img/picture.png") - */ +/** + * This type is used for accessing resources with CommonJS **require** function. + * + * e.g. require("./img/picture.png") + */ typealias ResString = String - /** - * Helper type used to define CSS style attributes. - */ +/** + * Helper type used to define CSS style attributes. + */ typealias StringPair = Pair - /** - * Helper type used to define CSS classes. - */ +/** + * Helper type used to define CSS classes. + */ typealias StringBoolPair = Pair - /** - * This type is used for defining CSS dimensions (width, heights, margins, paddings, etc.). - */ +/** + * This type is used for defining CSS dimensions (width, heights, margins, paddings, etc.). + */ typealias CssSize = Pair + -- cgit