2019-01-30 18:08:43 +02:00
|
|
|
declare module '*/package.json' {
|
2019-02-05 10:42:55 +02:00
|
|
|
interface IRepository {
|
|
|
|
type: string;
|
|
|
|
url: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const name: string;
|
|
|
|
export const version: string;
|
|
|
|
export const repository: IRepository;
|
2019-01-30 18:08:43 +02:00
|
|
|
}
|