dan.the.man
09/15/2020, 2:33 PMExported declaration uses non-exportable property type: List<Carousel>
and
data class Data(
val carousel:List<Carousel>
)
Carousel itself is marked with @JsExport as well, am I not able to export lists?dan.the.man
09/15/2020, 2:34 PMd.ts
?
class Data {
constructor(carousel: kotlin.collections.List<models.Carousel>);
readonly carousel: kotlin.collections.List<models.Carousel>;
component1(): kotlin.collections.List<models.Carousel>;
copy(carousel: kotlin.collections.List<models.Carousel>): models.Data;
toString(): string;
hashCode(): number;
equals(other: Nullable<any>): boolean;
}
bashor
09/16/2020, 5:20 PMdan.the.man
09/16/2020, 5:20 PMbashor
09/16/2020, 5:20 PMdan.the.man
09/16/2020, 5:21 PMbashor
09/16/2020, 5:21 PMdan.the.man
09/16/2020, 6:06 PMList<T>
right? or am I mistakenbashor
09/16/2020, 8:37 PMbashor
09/16/2020, 8:38 PMbashor
09/16/2020, 8:41 PMdazza5000
09/17/2020, 6:44 PMdazza5000
09/17/2020, 6:44 PM