mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
* style(prettier): Use prettier for code formatting This saves us style issues. Also adds husky and lint-staged for pre-commit testing Refs https://github.com/documentationjs/documentation/issues/709
8 lines
101 B
JavaScript
8 lines
101 B
JavaScript
/**
|
|
* This is my interface.
|
|
*/
|
|
interface Foo extends Bar, Baz {
|
|
prop1: number,
|
|
prop2: string
|
|
}
|