mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 21:03:09 +02: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;
|
|
}
|