documentation/test/fixture/interface.input.js
Tom MacWright e2915dc19c feat(core): Support Flow interface declarations
* Add support for interface declarations

* Support exported interfaces/type aliases

* Update test fixtures

* Add interface type, fix test

* Fix comment style and typo
2017-04-10 13:14:04 -04:00

8 lines
102 B
JavaScript

/**
* This is my interface.
*/
interface Foo extends Bar, Baz {
prop1: number;
prop2: string;
}