Skip to content

Commit

Permalink
fix case
Browse files Browse the repository at this point in the history
  • Loading branch information
rhalff committed Oct 1, 2016
1 parent 12c1233 commit fa4fa5c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ export type Graph = {
properties: {
name: string
},
inports: port[],
outports: port[],
connections: connection[]
inports: Port[],
outports: Port[],
connections: Connection[]
groups: array,
nodes: array,
processes: {
Expand All @@ -92,7 +92,7 @@ export type Library = {
name: string,
description: string,
icon: string,
inports: port[],
outports: port[]
inports: Port[],
outports: Port[]
}
}

0 comments on commit fa4fa5c

Please sign in to comment.