Skip to content

Instantly share code, notes, and snippets.

View tonkotsuboy's full-sized avatar
😸
I want another myself.

Takeshi Kano tonkotsuboy

😸
I want another myself.
View GitHub Profile
@tonkotsuboy
tonkotsuboy / main.ts
Last active February 9, 2018 02:18
Promiseで複数のデータを流したい(TypeScript)
// FooData型とBarData型の値を流すことを考えてみる
interface FooData {
foo: string;
}
interface BarData {
bar: number;
}