Wise Platform APIをもとに型定義をつけた API パッケージ
開発中、開発がこれ以上行われることはないです
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);
};