概要
typescript初心者で今勉強中です。
Typescriptでtype宣言したオブジェクトを別ファイルの関数の引数に扱いたいがやり方がわからないです
理想は
const aaa = (sample1の要素 | sample2の要素 | sample3の要素) => {
}
というふうにORで引数を与えるようにしたいです
該当のソースコード
Object.ts
typescript
1 2export type Object = { 3 sample1 :{ 4 latlng: string, 5 r: number, 6 date: string, 7 to: string, 8 }; 9 10 sample2: { 11 word: string, 12 latlng: string, 13 r: number, 14 from: string, 15 to: string, 16 }; 17 18 sample3: { 19 id: string, 20 }; 21}
sample.ts
typescript
1import { Object } from './path/to/Object' 2.. 3const aaa = (ここにObjectを引数に与えたい) => { 4.. 5.. 6}
試したこと
sample.ts
typescript
1const aaa: Object = (sample1 | sample2 | sample3) => {
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。