UNPKG
httpsnippet-lite
Version:
latest (3.0.5)
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
HTTP Request snippet generator for *most* languages
github.com/P0lip/httpsnippet
P0lip/httpsnippet
httpsnippet-lite
/
dist
/
types
/
targets
/
powershell
/
common.d.ts
4 lines
(3 loc)
•
219 B
TypeScript
View Raw
1
2
3
4
import
type
{
Converter
}
from
'../targets.js'
;
export
type
PowershellCommand
=
'Invoke-RestMethod'
|
'Invoke-WebRequest'
;
export
declare
const
generatePowershellConvert
:
(
command
:
PowershellCommand
) =>
Converter
<
any
>;