Ward Bell f4acc0ccbc docs(tutorial): Part 3 improvements + input explanation
Updated Attribute Directives chapter with appendix on input properties
closes #576
2015-12-17 02:12:58 -08:00

7 lines
87 B
TypeScript

// #docregion
export interface Hero {
id: number;
name: string;
}
// #enddocregion