mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-25 14:26:29 +00:00
* Add support for interface declarations * Support exported interfaces/type aliases * Update test fixtures * Add interface type, fix test * Fix comment style and typo
8 lines
102 B
JavaScript
8 lines
102 B
JavaScript
/**
|
|
* This is my interface.
|
|
*/
|
|
interface Foo extends Bar, Baz {
|
|
prop1: number;
|
|
prop2: string;
|
|
}
|