mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-05 06:40:35 +08:00
Minor fixes; disabled ban-types tslint rule because of type named Symbol; disabled no-unnecessary-qualifier rule
This commit is contained in:
8
types/activex-libreoffice/index.d.ts
vendored
8
types/activex-libreoffice/index.d.ts
vendored
@@ -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.
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
{
|
||||
"extends": "dtslint/dt.json",
|
||||
"rules": {
|
||||
"interface-name": [false]
|
||||
"interface-name": [false],
|
||||
"ban-types": false,
|
||||
"no-unnecessary-qualifier": false
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user