New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@leafwell/medicalcard

Package Overview
Dependencies
Maintainers
2
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@leafwell/medicalcard

A simple document for any of these enviroments: Node.js. For better understading about the methods and arguments, please make ensure you have typescript installed and configured on your project.

latest
npmnpm
Version
0.0.39
Version published
Weekly downloads
1
-50%
Maintainers
2
Weekly downloads
 
Created
Source

Leafwell Provider Medical Card

A simple document for Leafwell Provider medical card's lib for any of these enviroments: Node.js and compatible with React and React Native. For better understading about the methods and arguments, please make ensure you have typescript installed and configured on your project.

Installation

Using npm:

$ npm install @leafwell/medicalcard

Using yarn:

$ yarn add @leafwell/medicalcard

Example

import Client from "@leafwell/medicalcard";

type ClientHeaders = {
  authorizationBearer?: string;
};

(async function main() {
  const options: ClientHeaders = {
    authorizationBearer: "",
  };

  Client.initialize("url", options);

  const response = await Client.api.startVideoCall({
    clinicianId: "",
    roomId: "",
  });

  console.log(response);
})();

Usage


#### Methods/properties available

```js
Client.initialize();
Client.api

Methods available in api property:

Products

api.disconnectVideoCall();

api.startVideoCall();

FAQs

Package last updated on 11 Jun 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts