UNPKG

webpack-typescript-lib-quickstart

Version:

Quickstart project for TypeScript library that runs on browsers or Node build with Webpack2.

17 lines (13 loc) 243 B
/** * Math class. */ export class MathExt { /** * Add two numbers. * @param x left operand. * @param y right operand. */ public add(x: number, y: number): number { return x + y; } }