タプルとは・・・
=> 複数の型の集合(KotlinのPairのようなイメージ)
type Array = {
hoge1: string,
hoge2: number,
}[];
type Tuple = [{
hoge1: string,
hoge2: number,
}];
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 3 years have passed since last update.
タプルとは・・・
=> 複数の型の集合(KotlinのPairのようなイメージ)
type Array = {
hoge1: string,
hoge2: number,
}[];
type Tuple = [{
hoge1: string,
hoge2: number,
}];
Register as a new user and use Qiita more conveniently
Go to list of users who liked