Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 604 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 604 Bytes

※warning : obsoluete

TransferWise TS

Wise Platform APIをもとに型定義をつけた API パッケージ

開発中、開発がこれ以上行われることはないです

Usage

import { TransferWiseConfig, useTransferWise } from "transferwise-ts";

const config: TransferWiseConfig = {
  apiKey: "<ApiKey>",
  isSandBox: false,
};

const { getProfiles, createQuote } = useTransferWise(config);

const TestMethod = () => {
  const profiles = await getProfiles();

  console.log(profiles);
};