File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 1+ import { AccessorDeclaration } from './AccessorDeclaration' ;
12import { ClassLikeDeclaration , ExportableDeclaration , GenericDeclaration } from './Declaration' ;
23import { MethodDeclaration } from './MethodDeclaration' ;
34import { PropertyDeclaration } from './PropertyDeclaration' ;
45
56/**
67 * Interface declaration that contains defined properties and methods.
7- *
8+ *
89 * @export
910 * @class InterfaceDeclaration
1011 * @implements {ExportableDeclaration}
1112 * @implements {GenericDeclaration}
1213 */
1314export class InterfaceDeclaration implements ClassLikeDeclaration , ExportableDeclaration , GenericDeclaration {
15+ public accessors : AccessorDeclaration [ ] ;
1416 public typeParameters : string [ ] | undefined ;
1517 public properties : PropertyDeclaration [ ] = [ ] ;
1618 public methods : MethodDeclaration [ ] = [ ] ;
You can’t perform that action at this time.
0 commit comments