Tag: 打字稿浏览

打字稿导入节点

我只是从前端网页开发(所有这些包pipe理器/打包器JavaScript的地狱),我试图使用打字稿+ browsify 所以我创build一个index.ts文件并下载uniq模块(使用npm)来testingts文件的编译 这里是我的index.ts /// <reference path="node_modules/uniq/uniq.d.ts" /> import {unique} from "uniq"; var data = [1, 2, 2, 3, 4, 5, 5, 5, 6]; console.log(unique(data)); uniq.d.ts // Type definitions for uniq // Project: https://www.npmjs.com/package/uniq // Definitions by: Hans Windhoff <https://github.com/hansrwindhoff> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped interface Uniq{ <T>(ip:Array<T>): Array<T>; } declare var uniq :Uniq; declare module "uniq" […]