This repository was archived by the owner on Aug 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
32 lines (25 loc) · 1.19 KB
/
index.ts
File metadata and controls
32 lines (25 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// PowerShellBinding.ts
import { IPowerShellBinding, PowerShellBinding, PowerShellBindingOptions } from './binding/PowerShellBinding';
export { IPowerShellBinding, PowerShellBinding, PowerShellBindingOptions };
// PowerShellCall.ts
import { PowerShellCall, PowerShellCallOptions, psCall } from './binding/PowerShellCall';
export { PowerShellCall, PowerShellCallOptions as PowerShellDecoratorOptions, psCall };
// PowerShellError.ts
import { PowerShellError } from './powershell/PowerShellError';
export { PowerShellError };
// PowerShellException.ts
import { PowerShellException, isPowerShellException } from './powershell/PowerShellException';
export { PowerShellException, isPowerShellException };
// Shim.ts
import { Shim, ShimOptions, ShimParseResult } from './powershell/shim/Shim';
export { Shim, ShimOptions, ShimParseResult };
// Parameters.ts
import { ParameterValue, ParameterRecord, assertParametersValid } from './powershell/shim/Parameters';
export { ParameterValue, ParameterRecord, assertParametersValid };
// DefaultShim.ts
import { DefaultShim } from './powershell/shim/DefaultShim';
export { DefaultShim };
/**
* shorthand for {@link PowerShellCall}
*/
export const PS = PowerShellCall;