13 lines
210 B
TypeScript
13 lines
210 B
TypeScript
interface Triple {
|
|
platform: string
|
|
arch: string
|
|
abi: string | null
|
|
platformArchABI: string
|
|
raw: string
|
|
}
|
|
|
|
export const platformArchTriples: {
|
|
[index: string]: {
|
|
[index: string]: Triple[]
|
|
}
|
|
}
|