iceshrimp-legacy/src/@types/package.json.d.ts
Acid Chicken (硫酸鶏) 9dd06a7621
/.well-known 周りをいい感じに (#4141)
* Enhance /.well-known and their friends

* Fix bug
2019-02-05 17:42:55 +09:00

11 lines
194 B
TypeScript

declare module '*/package.json' {
interface IRepository {
type: string;
url: string;
}
export const name: string;
export const version: string;
export const repository: IRepository;
}