mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-02 20:57:00 +01:00
9dd06a7621
* Enhance /.well-known and their friends * Fix bug
10 lines
194 B
TypeScript
10 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;
|
|
}
|