File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change
1
+ import { AccessorDeclaration } from './AccessorDeclaration' ;
1
2
import { ClassLikeDeclaration , ExportableDeclaration , GenericDeclaration } from './Declaration' ;
2
3
import { MethodDeclaration } from './MethodDeclaration' ;
3
4
import { PropertyDeclaration } from './PropertyDeclaration' ;
4
5
5
6
/**
6
7
* Interface declaration that contains defined properties and methods.
7
- *
8
+ *
8
9
* @export
9
10
* @class InterfaceDeclaration
10
11
* @implements {ExportableDeclaration}
11
12
* @implements {GenericDeclaration}
12
13
*/
13
14
export class InterfaceDeclaration implements ClassLikeDeclaration , ExportableDeclaration , GenericDeclaration {
15
+ public accessors : AccessorDeclaration [ ] ;
14
16
public typeParameters : string [ ] | undefined ;
15
17
public properties : PropertyDeclaration [ ] = [ ] ;
16
18
public methods : MethodDeclaration [ ] = [ ] ;
You can’t perform that action at this time.
0 commit comments