Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Latest commit

 

History

History
26 lines (17 loc) · 592 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 592 Bytes

@egomobile/types

npm

A repository of common interfaces, types and enums for TypeScript.

Install

$ npm install --save-dev @egomobile/types

Usage

import * as fs from 'fs';
import { PackageJSON } from '@egomobile/types';

const PACKAGE_JSON: PackageJSON = JSON.parse(
    fs.readFileSync('./package.json', 'utf8');
);

Documentation

The API documentation can be found here.