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