Use primitive type string instead of String (#3578)

This commit is contained in:
Aya Morisawa 2018-12-09 23:26:32 +09:00 committed by GitHub
parent 393c6aa79a
commit 6967def6c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
src/crypto_key.d.ts vendored
View file

@ -1,2 +1,2 @@
export function extractPublic(keypair: String): String;
export function generate(): String;
export function extractPublic(keypair: string): string;
export function generate(): string;