diff options
Diffstat (limited to 'node_modules/nexe/lib/target.d.ts')
-rw-r--r-- | node_modules/nexe/lib/target.d.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/node_modules/nexe/lib/target.d.ts b/node_modules/nexe/lib/target.d.ts new file mode 100644 index 0000000..6e94a29 --- /dev/null +++ b/node_modules/nexe/lib/target.d.ts @@ -0,0 +1,11 @@ +export declare type NodePlatform = 'windows' | 'mac' | 'alpine' | 'linux'; +export declare type NodeArch = 'x86' | 'x64' | 'arm' | 'arm64'; +declare const platforms: NodePlatform[], architectures: NodeArch[]; +export { platforms, architectures }; +export interface NexeTarget { + version: string; + platform: NodePlatform | string; + arch: NodeArch | string; +} +export declare function targetsEqual(a: NexeTarget, b: NexeTarget): boolean; +export declare function getTarget(target?: string | Partial<NexeTarget>): NexeTarget; |