Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: resolve reference in extends Array<T> #18

Merged
merged 1 commit into from
Mar 13, 2016

Conversation

lacolaco
Copy link
Contributor

Currently:

{
  "FooList": {
    "type": "array",
    "items": {
      "$ref": "#/definitions/Foo"
  }
}

=> export interface IFooList extends Array<I/definitions/Foo#>

Expected:

export interface IFooList extends Array<IFoo>

Currently:

```
{
  "FooList": {
    "type": "array",
    "items": {
      "$ref": "#/definitions/Foo"
  }
}
```

=> `export interface IFooList extends Array<I/definitions/Foo#>`

Expected:

`export interface IFooList extends Array<IFoo>`
horiuchi added a commit that referenced this pull request Mar 13, 2016
Fix: resolve reference in `extends Array<T>`
@horiuchi horiuchi merged commit 6e270b8 into horiuchi:master Mar 13, 2016
@horiuchi
Copy link
Owner

@laco0416 Thank you! 👍

@lacolaco lacolaco deleted the patch-1 branch March 13, 2016 13:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants