@theia/plugin 1.53.0-next.55 → 1.53.0-next.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/README.md +766 -766
  2. package/package.json +2 -2
  3. package/src/package.spec.ts +28 -28
  4. package/src/theia-extra.d.ts +410 -410
  5. package/src/theia.d.ts +18078 -18078
  6. package/src/theia.proposed.canonicalUriProvider.d.ts +64 -64
  7. package/src/theia.proposed.customEditorMove.d.ts +41 -41
  8. package/src/theia.proposed.debugVisualization.d.ts +189 -189
  9. package/src/theia.proposed.diffCommand.d.ts +55 -55
  10. package/src/theia.proposed.documentPaste.d.ts +316 -316
  11. package/src/theia.proposed.editSessionIdentityProvider.d.ts +89 -89
  12. package/src/theia.proposed.extensionsAny.d.ts +57 -57
  13. package/src/theia.proposed.externalUriOpener.d.ts +158 -158
  14. package/src/theia.proposed.findTextInFiles.d.ts +178 -178
  15. package/src/theia.proposed.fsChunks.d.ts +32 -32
  16. package/src/theia.proposed.mappedEditsProvider.d.ts +59 -59
  17. package/src/theia.proposed.multiDocumentHighlightProvider.ts +82 -82
  18. package/src/theia.proposed.notebookCellExecutionState.d.ts +68 -68
  19. package/src/theia.proposed.notebookKernelSource.d.ts +62 -62
  20. package/src/theia.proposed.notebookMessaging.d.ts +84 -84
  21. package/src/theia.proposed.portsAttributes.d.ts +115 -115
  22. package/src/theia.proposed.profileContentHandlers.d.ts +35 -35
  23. package/src/theia.proposed.resolvers.d.ts +44 -44
  24. package/src/theia.proposed.scmValidation.d.ts +70 -70
  25. package/src/theia.proposed.shareProvider.d.ts +92 -92
  26. package/src/theia.proposed.terminalQuickFixProvider.d.ts +103 -103
  27. package/src/theia.proposed.textSearchProvider.d.ts +145 -145
  28. package/src/theia.proposed.timeline.d.ts +177 -177
@@ -1,145 +1,145 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2023 Ericsson and others.
3
- //
4
- // This program and the accompanying materials are made available under the
5
- // terms of the Eclipse Public License v. 2.0 which is available at
6
- // http://www.eclipse.org/legal/epl-2.0.
7
- //
8
- // This Source Code may also be made available under the following Secondary
9
- // Licenses when the conditions for such availability set forth in the Eclipse
10
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- // with the GNU Classpath Exception which is available at
12
- // https://www.gnu.org/software/classpath/license.html.
13
- //
14
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
-
17
- /*---------------------------------------------------------------------------------------------
18
- * Copyright (c) Microsoft Corporation. All rights reserved.
19
- * Licensed under the MIT License. See License.txt in the project root for license information.
20
- *--------------------------------------------------------------------------------------------*/
21
- // code copied and modified from https://github.com/microsoft/vscode/blob/1.77.0/src/vscode-dts/vscode.proposed.textSearchQuery.d.ts
22
-
23
- export module '@theia/plugin' {
24
-
25
- /**
26
- * The parameters of a query for text search.
27
- */
28
- export interface TextSearchQuery {
29
- /**
30
- * The text pattern to search for.
31
- */
32
- pattern: string;
33
-
34
- /**
35
- * Whether or not `pattern` should match multiple lines of text.
36
- */
37
- isMultiline?: boolean;
38
-
39
- /**
40
- * Whether or not `pattern` should be interpreted as a regular expression.
41
- */
42
- isRegExp?: boolean;
43
-
44
- /**
45
- * Whether or not the search should be case-sensitive.
46
- */
47
- isCaseSensitive?: boolean;
48
-
49
- /**
50
- * Whether or not to search for whole word matches only.
51
- */
52
- isWordMatch?: boolean;
53
- }
54
-
55
- /**
56
- * A match from a text search
57
- */
58
- export interface TextSearchMatch {
59
- /**
60
- * The uri for the matching document.
61
- */
62
- uri: Uri;
63
-
64
- /**
65
- * The range of the match within the document, or multiple ranges for multiple matches.
66
- */
67
- ranges: Range | Range[];
68
-
69
- /**
70
- * A preview of the text match.
71
- */
72
- preview: TextSearchMatchPreview;
73
- }
74
-
75
- /**
76
- * A preview of the text result.
77
- */
78
- export interface TextSearchMatchPreview {
79
- /**
80
- * The matching lines of text, or a portion of the matching line that contains the match.
81
- */
82
- text: string;
83
-
84
- /**
85
- * The Range within `text` corresponding to the text of the match.
86
- * The number of matches must match the TextSearchMatch's range property.
87
- */
88
- matches: Range | Range[];
89
- }
90
-
91
- /**
92
- * Options to specify the size of the result text preview.
93
- * These options don't affect the size of the match itself, just the amount of preview text.
94
- */
95
- export interface TextSearchPreviewOptions {
96
- /**
97
- * The maximum number of lines in the preview.
98
- * Only search providers that support multiline search will ever return more than one line in the match.
99
- */
100
- matchLines: number;
101
-
102
- /**
103
- * The maximum number of characters included per line.
104
- */
105
- charsPerLine: number;
106
- }
107
-
108
- /**
109
- * A line of context surrounding a TextSearchMatch.
110
- */
111
- export interface TextSearchContext {
112
- /**
113
- * The uri for the matching document.
114
- */
115
- uri: Uri;
116
-
117
- /**
118
- * One line of text.
119
- * previewOptions.charsPerLine applies to this
120
- */
121
- text: string;
122
-
123
- /**
124
- * The line number of this line of context.
125
- */
126
- lineNumber: number;
127
- }
128
-
129
- export type TextSearchResult = TextSearchMatch | TextSearchContext;
130
-
131
- /**
132
- * Information collected when text search is complete.
133
- */
134
- export interface TextSearchComplete {
135
- /**
136
- * Whether the search hit the limit on the maximum number of search results.
137
- * `maxResults` on [`TextSearchOptions`](#TextSearchOptions) specifies the max number of results.
138
- * - If exactly that number of matches exist, this should be false.
139
- * - If `maxResults` matches are returned and more exist, this should be true.
140
- * - If search hits an internal limit which is less than `maxResults`, this should be true.
141
- */
142
- limitHit?: boolean;
143
- }
144
-
145
- }
1
+ // *****************************************************************************
2
+ // Copyright (C) 2023 Ericsson and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ /*---------------------------------------------------------------------------------------------
18
+ * Copyright (c) Microsoft Corporation. All rights reserved.
19
+ * Licensed under the MIT License. See License.txt in the project root for license information.
20
+ *--------------------------------------------------------------------------------------------*/
21
+ // code copied and modified from https://github.com/microsoft/vscode/blob/1.77.0/src/vscode-dts/vscode.proposed.textSearchQuery.d.ts
22
+
23
+ export module '@theia/plugin' {
24
+
25
+ /**
26
+ * The parameters of a query for text search.
27
+ */
28
+ export interface TextSearchQuery {
29
+ /**
30
+ * The text pattern to search for.
31
+ */
32
+ pattern: string;
33
+
34
+ /**
35
+ * Whether or not `pattern` should match multiple lines of text.
36
+ */
37
+ isMultiline?: boolean;
38
+
39
+ /**
40
+ * Whether or not `pattern` should be interpreted as a regular expression.
41
+ */
42
+ isRegExp?: boolean;
43
+
44
+ /**
45
+ * Whether or not the search should be case-sensitive.
46
+ */
47
+ isCaseSensitive?: boolean;
48
+
49
+ /**
50
+ * Whether or not to search for whole word matches only.
51
+ */
52
+ isWordMatch?: boolean;
53
+ }
54
+
55
+ /**
56
+ * A match from a text search
57
+ */
58
+ export interface TextSearchMatch {
59
+ /**
60
+ * The uri for the matching document.
61
+ */
62
+ uri: Uri;
63
+
64
+ /**
65
+ * The range of the match within the document, or multiple ranges for multiple matches.
66
+ */
67
+ ranges: Range | Range[];
68
+
69
+ /**
70
+ * A preview of the text match.
71
+ */
72
+ preview: TextSearchMatchPreview;
73
+ }
74
+
75
+ /**
76
+ * A preview of the text result.
77
+ */
78
+ export interface TextSearchMatchPreview {
79
+ /**
80
+ * The matching lines of text, or a portion of the matching line that contains the match.
81
+ */
82
+ text: string;
83
+
84
+ /**
85
+ * The Range within `text` corresponding to the text of the match.
86
+ * The number of matches must match the TextSearchMatch's range property.
87
+ */
88
+ matches: Range | Range[];
89
+ }
90
+
91
+ /**
92
+ * Options to specify the size of the result text preview.
93
+ * These options don't affect the size of the match itself, just the amount of preview text.
94
+ */
95
+ export interface TextSearchPreviewOptions {
96
+ /**
97
+ * The maximum number of lines in the preview.
98
+ * Only search providers that support multiline search will ever return more than one line in the match.
99
+ */
100
+ matchLines: number;
101
+
102
+ /**
103
+ * The maximum number of characters included per line.
104
+ */
105
+ charsPerLine: number;
106
+ }
107
+
108
+ /**
109
+ * A line of context surrounding a TextSearchMatch.
110
+ */
111
+ export interface TextSearchContext {
112
+ /**
113
+ * The uri for the matching document.
114
+ */
115
+ uri: Uri;
116
+
117
+ /**
118
+ * One line of text.
119
+ * previewOptions.charsPerLine applies to this
120
+ */
121
+ text: string;
122
+
123
+ /**
124
+ * The line number of this line of context.
125
+ */
126
+ lineNumber: number;
127
+ }
128
+
129
+ export type TextSearchResult = TextSearchMatch | TextSearchContext;
130
+
131
+ /**
132
+ * Information collected when text search is complete.
133
+ */
134
+ export interface TextSearchComplete {
135
+ /**
136
+ * Whether the search hit the limit on the maximum number of search results.
137
+ * `maxResults` on [`TextSearchOptions`](#TextSearchOptions) specifies the max number of results.
138
+ * - If exactly that number of matches exist, this should be false.
139
+ * - If `maxResults` matches are returned and more exist, this should be true.
140
+ * - If search hits an internal limit which is less than `maxResults`, this should be true.
141
+ */
142
+ limitHit?: boolean;
143
+ }
144
+
145
+ }
@@ -1,177 +1,177 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2023 Ericsson and others.
3
- //
4
- // This program and the accompanying materials are made available under the
5
- // terms of the Eclipse Public License v. 2.0 which is available at
6
- // http://www.eclipse.org/legal/epl-2.0.
7
- //
8
- // This Source Code may also be made available under the following Secondary
9
- // Licenses when the conditions for such availability set forth in the Eclipse
10
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- // with the GNU Classpath Exception which is available at
12
- // https://www.gnu.org/software/classpath/license.html.
13
- //
14
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
-
17
- /*---------------------------------------------------------------------------------------------
18
- * Copyright (c) Microsoft Corporation. All rights reserved.
19
- * Licensed under the MIT License. See License.txt in the project root for license information.
20
- *--------------------------------------------------------------------------------------------*/
21
- // code copied and modified from https://github.com/microsoft/vscode/blob/1.77.0/src/vscode-dts/vscode.proposed.timeline.d.ts
22
-
23
- export module '@theia/plugin' {
24
-
25
- export class TimelineItem {
26
- /**
27
- * A timestamp (in milliseconds since 1 January 1970 00:00:00) for when the timeline item occurred.
28
- */
29
- timestamp: number;
30
-
31
- /**
32
- * A human-readable string describing the timeline item.
33
- */
34
- label: string;
35
-
36
- /**
37
- * Optional id for the timeline item. It must be unique across all the timeline items provided by this source.
38
- *
39
- * If not provided, an id is generated using the timeline item's timestamp.
40
- */
41
- id?: string;
42
-
43
- /**
44
- * The icon path or [ThemeIcon](#ThemeIcon) for the timeline item.
45
- */
46
- iconPath?: Uri | { light: Uri; dark: Uri } | ThemeIcon;
47
-
48
- /**
49
- * A human readable string describing less prominent details of the timeline item.
50
- */
51
- description?: string;
52
-
53
- /**
54
- * The tooltip text when you hover over the timeline item.
55
- */
56
- detail?: string;
57
-
58
- /**
59
- * The [command](#Command) that should be executed when the timeline item is selected.
60
- */
61
- command?: Command;
62
-
63
- /**
64
- * Context value of the timeline item. This can be used to contribute specific actions to the item.
65
- * For example, a timeline item is given a context value as `commit`. When contributing actions to `timeline/item/context`
66
- * using `menus` extension point, you can specify context value for key `timelineItem` in `when` expression like `timelineItem == commit`.
67
- * ```
68
- * "contributes": {
69
- * "menus": {
70
- * "timeline/item/context": [{
71
- * "command": "extension.copyCommitId",
72
- * "when": "timelineItem == commit"
73
- * }]
74
- * }
75
- * }
76
- * ```
77
- * This will show the `extension.copyCommitId` action only for items where `contextValue` is `commit`.
78
- */
79
- contextValue?: string;
80
-
81
- /**
82
- * Accessibility information used when screen reader interacts with this timeline item.
83
- */
84
- accessibilityInformation?: AccessibilityInformation;
85
-
86
- /**
87
- * @param label A human-readable string describing the timeline item
88
- * @param timestamp A timestamp (in milliseconds since 1 January 1970 00:00:00) for when the timeline item occurred
89
- */
90
- constructor(label: string, timestamp: number);
91
- }
92
-
93
- export interface TimelineChangeEvent {
94
- /**
95
- * The [uri](#Uri) of the resource for which the timeline changed.
96
- */
97
- uri: Uri;
98
-
99
- /**
100
- * A flag which indicates whether the entire timeline should be reset.
101
- */
102
- reset?: boolean;
103
- }
104
-
105
- export interface Timeline {
106
- readonly paging?: {
107
- /**
108
- * A provider-defined cursor specifying the starting point of timeline items which are after the ones returned.
109
- * Use `undefined` to signal that there are no more items to be returned.
110
- */
111
- readonly cursor: string | undefined;
112
- }
113
-
114
- /**
115
- * An array of [timeline items](#TimelineItem).
116
- */
117
- readonly items: readonly TimelineItem[];
118
- }
119
-
120
- export interface TimelineOptions {
121
- /**
122
- * A provider-defined cursor specifying the starting point of the timeline items that should be returned.
123
- */
124
- cursor?: string;
125
-
126
- /**
127
- * An optional maximum number timeline items or the all timeline items newer (inclusive) than the timestamp or id that should be returned.
128
- * If `undefined` all timeline items should be returned.
129
- */
130
- limit?: number | { timestamp: number; id?: string };
131
- }
132
-
133
- export interface TimelineProvider {
134
- /**
135
- * An optional event to signal that the timeline for a source has changed.
136
- * To signal that the timeline for all resources (uris) has changed, do not pass any argument or pass `undefined`.
137
- */
138
- onDidChange?: Event<TimelineChangeEvent | undefined>;
139
-
140
- /**
141
- * An identifier of the source of the timeline items. This can be used to filter sources.
142
- */
143
- readonly id: string;
144
-
145
- /**
146
- * A human-readable string describing the source of the timeline items. This can be used as the display label when filtering sources.
147
- */
148
- readonly label: string;
149
-
150
- /**
151
- * Provide [timeline items](#TimelineItem) for a [Uri](#Uri).
152
- *
153
- * @param uri The [uri](#Uri) of the file to provide the timeline for.
154
- * @param options A set of options to determine how results should be returned.
155
- * @param token A cancellation token.
156
- * @return The [timeline result](#TimelineResult) or a thenable that resolves to such. The lack of a result
157
- * can be signaled by returning `undefined`, `null`, or an empty array.
158
- */
159
- provideTimeline(uri: Uri, options: TimelineOptions, token: CancellationToken): ProviderResult<Timeline>;
160
- }
161
-
162
- export namespace workspace {
163
- /**
164
- * Register a timeline provider.
165
- *
166
- * Multiple providers can be registered. In that case, providers are asked in
167
- * parallel and the results are merged. A failing provider (rejected promise or exception) will
168
- * not cause a failure of the whole operation.
169
- *
170
- * @param scheme A scheme or schemes that defines which documents this provider is applicable to. Can be `*` to target all documents.
171
- * @param provider A timeline provider.
172
- * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
173
- */
174
- export function registerTimelineProvider(scheme: string | string[], provider: TimelineProvider): Disposable;
175
- }
176
-
177
- }
1
+ // *****************************************************************************
2
+ // Copyright (C) 2023 Ericsson and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ /*---------------------------------------------------------------------------------------------
18
+ * Copyright (c) Microsoft Corporation. All rights reserved.
19
+ * Licensed under the MIT License. See License.txt in the project root for license information.
20
+ *--------------------------------------------------------------------------------------------*/
21
+ // code copied and modified from https://github.com/microsoft/vscode/blob/1.77.0/src/vscode-dts/vscode.proposed.timeline.d.ts
22
+
23
+ export module '@theia/plugin' {
24
+
25
+ export class TimelineItem {
26
+ /**
27
+ * A timestamp (in milliseconds since 1 January 1970 00:00:00) for when the timeline item occurred.
28
+ */
29
+ timestamp: number;
30
+
31
+ /**
32
+ * A human-readable string describing the timeline item.
33
+ */
34
+ label: string;
35
+
36
+ /**
37
+ * Optional id for the timeline item. It must be unique across all the timeline items provided by this source.
38
+ *
39
+ * If not provided, an id is generated using the timeline item's timestamp.
40
+ */
41
+ id?: string;
42
+
43
+ /**
44
+ * The icon path or [ThemeIcon](#ThemeIcon) for the timeline item.
45
+ */
46
+ iconPath?: Uri | { light: Uri; dark: Uri } | ThemeIcon;
47
+
48
+ /**
49
+ * A human readable string describing less prominent details of the timeline item.
50
+ */
51
+ description?: string;
52
+
53
+ /**
54
+ * The tooltip text when you hover over the timeline item.
55
+ */
56
+ detail?: string;
57
+
58
+ /**
59
+ * The [command](#Command) that should be executed when the timeline item is selected.
60
+ */
61
+ command?: Command;
62
+
63
+ /**
64
+ * Context value of the timeline item. This can be used to contribute specific actions to the item.
65
+ * For example, a timeline item is given a context value as `commit`. When contributing actions to `timeline/item/context`
66
+ * using `menus` extension point, you can specify context value for key `timelineItem` in `when` expression like `timelineItem == commit`.
67
+ * ```
68
+ * "contributes": {
69
+ * "menus": {
70
+ * "timeline/item/context": [{
71
+ * "command": "extension.copyCommitId",
72
+ * "when": "timelineItem == commit"
73
+ * }]
74
+ * }
75
+ * }
76
+ * ```
77
+ * This will show the `extension.copyCommitId` action only for items where `contextValue` is `commit`.
78
+ */
79
+ contextValue?: string;
80
+
81
+ /**
82
+ * Accessibility information used when screen reader interacts with this timeline item.
83
+ */
84
+ accessibilityInformation?: AccessibilityInformation;
85
+
86
+ /**
87
+ * @param label A human-readable string describing the timeline item
88
+ * @param timestamp A timestamp (in milliseconds since 1 January 1970 00:00:00) for when the timeline item occurred
89
+ */
90
+ constructor(label: string, timestamp: number);
91
+ }
92
+
93
+ export interface TimelineChangeEvent {
94
+ /**
95
+ * The [uri](#Uri) of the resource for which the timeline changed.
96
+ */
97
+ uri: Uri;
98
+
99
+ /**
100
+ * A flag which indicates whether the entire timeline should be reset.
101
+ */
102
+ reset?: boolean;
103
+ }
104
+
105
+ export interface Timeline {
106
+ readonly paging?: {
107
+ /**
108
+ * A provider-defined cursor specifying the starting point of timeline items which are after the ones returned.
109
+ * Use `undefined` to signal that there are no more items to be returned.
110
+ */
111
+ readonly cursor: string | undefined;
112
+ }
113
+
114
+ /**
115
+ * An array of [timeline items](#TimelineItem).
116
+ */
117
+ readonly items: readonly TimelineItem[];
118
+ }
119
+
120
+ export interface TimelineOptions {
121
+ /**
122
+ * A provider-defined cursor specifying the starting point of the timeline items that should be returned.
123
+ */
124
+ cursor?: string;
125
+
126
+ /**
127
+ * An optional maximum number timeline items or the all timeline items newer (inclusive) than the timestamp or id that should be returned.
128
+ * If `undefined` all timeline items should be returned.
129
+ */
130
+ limit?: number | { timestamp: number; id?: string };
131
+ }
132
+
133
+ export interface TimelineProvider {
134
+ /**
135
+ * An optional event to signal that the timeline for a source has changed.
136
+ * To signal that the timeline for all resources (uris) has changed, do not pass any argument or pass `undefined`.
137
+ */
138
+ onDidChange?: Event<TimelineChangeEvent | undefined>;
139
+
140
+ /**
141
+ * An identifier of the source of the timeline items. This can be used to filter sources.
142
+ */
143
+ readonly id: string;
144
+
145
+ /**
146
+ * A human-readable string describing the source of the timeline items. This can be used as the display label when filtering sources.
147
+ */
148
+ readonly label: string;
149
+
150
+ /**
151
+ * Provide [timeline items](#TimelineItem) for a [Uri](#Uri).
152
+ *
153
+ * @param uri The [uri](#Uri) of the file to provide the timeline for.
154
+ * @param options A set of options to determine how results should be returned.
155
+ * @param token A cancellation token.
156
+ * @return The [timeline result](#TimelineResult) or a thenable that resolves to such. The lack of a result
157
+ * can be signaled by returning `undefined`, `null`, or an empty array.
158
+ */
159
+ provideTimeline(uri: Uri, options: TimelineOptions, token: CancellationToken): ProviderResult<Timeline>;
160
+ }
161
+
162
+ export namespace workspace {
163
+ /**
164
+ * Register a timeline provider.
165
+ *
166
+ * Multiple providers can be registered. In that case, providers are asked in
167
+ * parallel and the results are merged. A failing provider (rejected promise or exception) will
168
+ * not cause a failure of the whole operation.
169
+ *
170
+ * @param scheme A scheme or schemes that defines which documents this provider is applicable to. Can be `*` to target all documents.
171
+ * @param provider A timeline provider.
172
+ * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
173
+ */
174
+ export function registerTimelineProvider(scheme: string | string[], provider: TimelineProvider): Disposable;
175
+ }
176
+
177
+ }