We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d427d05 + 9f97baf commit 1c570e8Copy full SHA for 1c570e8
typescript/README.md
@@ -0,0 +1,17 @@
1
+Briisk TypeScript Style Guide
2
+
3
+## Interfaces
4
5
+ <a name="interfaces--naming"></a><a name="1.1"></a>
6
+ - [1.1](#interfaces--naming) Interfaces and types naming convention
7
8
+ > Why? For consistancy. Be aware that using this style with classes can cause conflicts.
9
10
+ ```javascript
11
+ interface User {
12
+ name: string;
13
+ }
14
+ type Product = {
15
16
17
+ ```
0 commit comments