mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-10 06:10:17 -04:00
16 lines
276 B
TypeScript
16 lines
276 B
TypeScript
class CollectionImpl {
|
|
title: string;
|
|
icon: any;
|
|
data: any;
|
|
|
|
constructor(title: string, icon: any) {
|
|
this.title = title;
|
|
this.icon = icon;
|
|
}
|
|
|
|
// subject to change
|
|
setData(data: any){
|
|
this.data = data;
|
|
}
|
|
|
|
} |