diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-05-07 14:22:13 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-05-07 14:22:13 +0900 |
| commit | b60f9fbc0089ade0b9dce3902489917ca8a57d42 (patch) | |
| tree | 535037a7c4afd2a4d1d0240a9c2720b3c156848c /src/client/instance.ts | |
| parent | 12.80.3 (diff) | |
| download | sharkey-b60f9fbc0089ade0b9dce3902489917ca8a57d42.tar.gz sharkey-b60f9fbc0089ade0b9dce3902489917ca8a57d42.tar.bz2 sharkey-b60f9fbc0089ade0b9dce3902489917ca8a57d42.zip | |
Improve ad
Diffstat (limited to 'src/client/instance.ts')
| -rw-r--r-- | src/client/instance.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/client/instance.ts b/src/client/instance.ts index bd6b1bd571..ad9e1a95fd 100644 --- a/src/client/instance.ts +++ b/src/client/instance.ts @@ -3,10 +3,16 @@ import { api } from './os'; // TODO: 他のタブと永続化されたstateを同期 -type Instance = { +export type Instance = { emojis: { category: string; }[]; + ads: { + ratio: number; + place: string; + url: string; + imageUrl: string; + }[]; }; const data = localStorage.getItem('instance'); |