postman-types
v1.0.0
Published
Types for Postman colletions
Downloads
6
Readme
postman-types
Types for Postman collections.
Installation
npm install postman-types
Usage
import { Postman, PostmanV2, PostmanV2_1 } from 'postman-types';
function process(collection: Postman.Collection) {}
function processV2(collection: PostmanV2.Collection) {}
function processV2_1(collection: PostmanV2_1.Collection) {}