docs(nx): fix typo on tutorial

Tutorial is abort because there is no export in Todo interface, fix it
This commit is contained in:
MSakamaki 2019-04-08 14:42:26 +09:00 committed by Victor Savkin
parent bd2cb49bfd
commit ed1d69fdd4

View File

@ -36,7 +36,7 @@ myorg/
**Copy the interface into the library's index file.**
```typescript
interface Todo {
export interface Todo {
title: string;
}
```