2019-11-20 18:04:24 +09:00

23 lines
548 B
TypeScript

import { Component, OnInit } from '@angular/core';
import {
StickerInfo,
StickerFilesInfo,
StickerUtil
} from '@ucap-webmessenger/core';
@Component({
selector: 'ucap-sticker-selector',
templateUrl: './sticker-selector.component.html',
styleUrls: ['./sticker-selector.component.scss']
})
export class StickerSelectorComponent implements OnInit {
stickerInfoList: StickerInfo[] = [];
stickerFileInfoList: StickerFilesInfo[] = [];
constructor() {}
ngOnInit() {
this.stickerInfoList = StickerUtil.getStickerInfoList();
}
}