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;
|
|
}
|