typescript support
MineYuanlu opened this issue · 5 comments
MineYuanlu commented
Can you provide an crypto-browserify.d.ts
? I am using typescript. Without this file, my editor will report an error. At present, I am using a magic revision of crypto.d.ts
, and only change its module name to crypto-browserify
ljharb commented
Types should come from a DT package, and someone would have to make one.
dluvnn commented
I solved the problem by adding the reference before import crypto
/// <reference types="node" />
import * as crypto from 'crypto';
Bruce-zxy commented
Who can solve the problem?
ljharb commented
@Bruce-zxy literally anyone who makes a PR to DefinitelyTyped.
jglee96 commented