UNPKG

@hso/d365-cli

Version:

Dynamics 365 Command Line Interface for TypeScript projects for Dataverse

13 lines (10 loc) 271 B
type Method = 'GET' | 'POST' | 'DELETE'; interface HttpHeaders { [index: string]: string; } interface JsonHttpHeaders extends HttpHeaders { 'OData-MaxVersion': string; 'OData-Version': string; 'Accept': string; 'Content-Type': string; }