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