omise / omise-node

Omise Node.js Library
https://docs.opn.ooo
102 stars 53 forks source link

Enable to give `omiseVersion` option in constructor in TypeScript #119

Closed FujiHaruka closed 4 years ago

FujiHaruka commented 4 years ago

Add omiseVersion? in IOptions type.

This change enables to write as follow in TypeScript.

import * as Omise from 'omise';

const omise = Omise({
  publicKey: OMISE_CONFIG.PUBLIC_KEY,
  secretKey: OMISE_CONFIG.SECRET_KEY,
  omiseVersion: '2019-05-29'
});