A repository of common interfaces, types and enums for TypeScript.
$ npm install --save-dev @egomobile/types
import * as fs from 'fs';
import { PackageJSON } from '@egomobile/types';
const PACKAGE_JSON: PackageJSON = JSON.parse(
fs.readFileSync('./package.json', 'utf8');
);
The API documentation can be found here.