microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1.5.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/typings/openssl-wrapper/openssl-wrapper.d.ts

33lines · modeblame

4bb0956eRedMickey5 years ago1/**
2* Copyright (c) Facebook, Inc. and its affiliates.
3*
4* This source code is licensed under the MIT license found in the
5* LICENSE file in the root directory of this source tree.
6*
7* @format
8*/
9
10// Type definitions for openssl-wrapper 0.3.4
11// Project: https://github.com/mgcrea/node-openssl-wrapper
12// Definitions by: facebook/flipper <https://github.com/facebook/flipper>
13
14declare module "openssl-wrapper" {
15export type Action =
16| "cms.verify"
17| "genrsa"
18| "pkcs12"
19| "req"
20| "req.new"
21| "req.verify"
22| "verify"
23| "rsa"
24| "smime.verify"
25| "x509.req"
26| "x509";
27
28export function exec(
29action: Action,
30options: { [key: string]: string },
31cb: (error: Error | undefined, buffer: Buffer | undefined) => any,
32): void;
33}