UNPKG

wp-quickstart-caller-example

Version:
10 lines (7 loc) 231 B
import {MathExt} from "webpack-typescript-lib-quickstart"; export class MathTwo { public addTwice(x: number, y: number): number { const mx = new MathExt(); return mx.add(x, y) + mx.add(x, y); } }