summaryrefslogtreecommitdiff
path: root/src/@types
diff options
context:
space:
mode:
authorAcid Chicken (硫酸鶏) <root@acid-chicken.com>2019-02-05 17:42:55 +0900
committerGitHub <noreply@github.com>2019-02-05 17:42:55 +0900
commit9dd06a7621d1745b30ed1c2b1d94d34143dd638e (patch)
tree7531db8f03407cc4b9106c36b2b5ab3dadf7672a /src/@types
parentMerge branch 'develop' of https://github.com/syuilo/misskey into develop (diff)
downloadsharkey-9dd06a7621d1745b30ed1c2b1d94d34143dd638e.tar.gz
sharkey-9dd06a7621d1745b30ed1c2b1d94d34143dd638e.tar.bz2
sharkey-9dd06a7621d1745b30ed1c2b1d94d34143dd638e.zip
/.well-known 周りをいい感じに (#4141)
* Enhance /.well-known and their friends * Fix bug
Diffstat (limited to 'src/@types')
-rw-r--r--src/@types/package.json.d.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/@types/package.json.d.ts b/src/@types/package.json.d.ts
index 7cf07c1abc..abe5fae687 100644
--- a/src/@types/package.json.d.ts
+++ b/src/@types/package.json.d.ts
@@ -1,3 +1,10 @@
declare module '*/package.json' {
- const version: string;
+ interface IRepository {
+ type: string;
+ url: string;
+ }
+
+ export const name: string;
+ export const version: string;
+ export const repository: IRepository;
}