Minor fixes; disabled ban-types tslint rule because of type named Symbol; disabled no-unnecessary-qualifier rule

This commit is contained in:
Zev Spitz
2017-09-10 16:35:25 +02:00
parent c5ac59d006
commit b8146eaf7a
2 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
// Type definitions for libreoffice 5.3
// Type definitions for LibreOffice 5.3
// Project: https://api.libreoffice.org/
// Definitions by: Zev Spitz <https://github.com/zspitz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -74522,8 +74522,7 @@ declare namespace com.sun.star {
/** represents a view of a spreadsheet document. */
interface SpreadsheetView extends frame.Controller, SpreadsheetViewSettings, SpreadsheetViewPane, XSpreadsheetView, container.XIndexAccess,
container.XEnumerationAccess, view.XSelectionSupplier, XViewSplitable, XViewFreezable, XRangeSelection, XEnhancedMouseClickBroadcaster, XActivationBroadcaster
{ }
container.XEnumerationAccess, view.XSelectionSupplier, XViewSplitable, XViewFreezable, XRangeSelection, XEnhancedMouseClickBroadcaster, XActivationBroadcaster { }
/** represents a single pane in a view of a spreadsheet document. */
interface SpreadsheetViewPane extends XViewPane, XCellRangeReferrer, view.XControlAccess { }
@@ -86145,8 +86144,7 @@ declare namespace com.sun.star {
* @see Text
*/
interface TextRange extends XTextRange, beans.XPropertySet, beans.XPropertyState, container.XContentEnumerationAccess, style.CharacterProperties,
style.CharacterPropertiesAsian, style.CharacterPropertiesComplex, style.ParagraphProperties, style.ParagraphPropertiesAsian, style.ParagraphPropertiesComplex
{ }
style.CharacterPropertiesAsian, style.CharacterPropertiesComplex, style.ParagraphProperties, style.ParagraphPropertiesAsian, style.ParagraphPropertiesComplex { }
/**
* describes the structural properties to retrieve text contents.

View File

@@ -1,6 +1,8 @@
{
"extends": "dtslint/dt.json",
"rules": {
"interface-name": [false]
"interface-name": [false],
"ban-types": false,
"no-unnecessary-qualifier": false
}
}