more typescripting

This commit is contained in:
muerwre 2019-02-20 17:52:42 +07:00
parent 5699a7abb7
commit 628b96c4ab
7 changed files with 144 additions and 103 deletions

View file

@ -1,6 +1,6 @@
// Стикеры
// import L from "leaflet";
export interface ISticker {
export interface IStickerItem {
off: number,
title: string,
title_long: string,
@ -11,7 +11,7 @@ export interface IStickerPack {
url: string,
size: number,
layers: {
[x: string]: ISticker,
[x: string]: IStickerItem,
}
}