napi-rs/triples/index.d.ts

14 lines
210 B
TypeScript
Raw Permalink Normal View History

interface Triple {
platform: string
arch: string
abi: string | null
platformArchABI: string
raw: string
}
2021-07-22 14:35:01 +09:00
export const platformArchTriples: {
[index: string]: {
[index: string]: Triple[]
}
}