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