Joel Einbinder 8aa88d5021
fix(doc): check and update optional types in the api (#1206)
This adds a new check to doclint for whether a member is correctly marked as optional. 
part of #6
2020-03-03 17:29:12 -08:00

15 lines
166 B
TypeScript

class A {
property1 = 1;
_property2 = 2;
constructor(delegate) {
}
get getter() : any {
return null;
}
async method(foo, bar) {
}
}
export {A};