File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4592,22 +4592,22 @@ declare module 'vscode' {
45924592 /**
45934593 * The clean task group;
45944594 */
4595- public static Clean : TaskGroup ;
4595+ static Clean : TaskGroup ;
45964596
45974597 /**
45984598 * The build task group;
45994599 */
4600- public static Build : TaskGroup ;
4600+ static Build : TaskGroup ;
46014601
46024602 /**
46034603 * The rebuild all task group;
46044604 */
4605- public static Rebuild : TaskGroup ;
4605+ static Rebuild : TaskGroup ;
46064606
46074607 /**
46084608 * The test all task group;
46094609 */
4610- public static Test : TaskGroup ;
4610+ static Test : TaskGroup ;
46114611
46124612 private constructor ( id : string , label : string ) ;
46134613 }
@@ -7027,13 +7027,13 @@ declare module 'vscode' {
70277027 export const onDidChangeConfiguration : Event < ConfigurationChangeEvent > ;
70287028
70297029 /**
7030- * Register a task provider.
7030+ * ~~Register a task provider.~~
7031+ *
7032+ * @deprecated Use the corresponding function on the `tasks` namespace instead
70317033 *
70327034 * @param type The task kind type this provider is registered for.
70337035 * @param provider A task provider.
70347036 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
7035- *
7036- * @deprecated Use the corresponding function on the `tasks` namespace instead
70377037 */
70387038 export function registerTaskProvider ( type : string , provider : TaskProvider ) : Disposable ;
70397039
You can’t perform that action at this time.
0 commit comments