Change module name to the correct one and fix return value #4 from n3oney/patch-2

This commit is contained in:
Mikołaj Pich 2019-09-10 12:24:21 +02:00 committed by GitHub
commit 66e6983c7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
node/index.d.ts vendored
View file

@ -1,3 +1,3 @@
declare module '@wulkanowy/uonet-request-signer' {
export function signContent(password: string, certificate: string, content: string): string;
declare module '@wulkanowy/uonet-request-signer-node' {
export function signContent(password: string, certificate: string, content: string): Promise<string>;
}