@redonvn/mst-sdk
v0.1.2
Published
MST lookup SDK
Downloads
214
Readme
@redonvn/mst-sdk
TypeScript SDK for MST lookup.
Install
npm install @redonvn/mst-sdkUsage
import { MstClient } from "@redonvn/mst-sdk";
const client = new MstClient();
const result = await client.lookup("0109165592");
console.log(result.message);One-off helper
import { lookupTax } from "@redonvn/mst-sdk";
const result = await lookupTax("0109165592");
console.log(result.message.short_name);Configuration
const client = new MstClient({
baseUrl: "https://mst.8686.vn",
timeoutMs: 10000
});