Releases: Chi-EEE/ryver
Releases · Chi-EEE/ryver
Release list
0.1.7
Download ryver 0.1.7
| File | Platform | Checksum |
|---|---|---|
| ryver-aarch64-apple-darwin.zip | Apple Silicon macOS | checksum |
| ryver-x86_64-apple-darwin.zip | Intel macOS | checksum |
| ryver-x86_64-pc-windows-msvc.zip | x64 Windows | checksum |
| ryver-aarch64-unknown-linux-gnu.zip | ARM64 Linux | checksum |
| ryver-x86_64-unknown-linux-gnu.zip | x64 Linux | checksum |
0.1.6
If the type is the same for a column then output it as that specific type:
e.g.
Name,Type
RedCar,Car
BlueCar,Car
GreenCar,Car=>
export type Car = {
Name: string;
Type: 'Car';
};
local Car = {}
Car.RedCar = {
Name = 'RedCar';
Type = 'Car';
};
Car.BlueCar = {
Name = 'BlueCar';
Type = 'Car';
};
Car.GreenCar = {
Name = 'GreenCar';
Type = 'Car';
};
return Car;