Skip to content

Commit

Permalink
chore: add built files
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Mar 24, 2021
1 parent 6c16885 commit c9a52a3
Show file tree
Hide file tree
Showing 5 changed files with 1,154 additions and 230 deletions.
1 change: 0 additions & 1 deletion dist/commands.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export declare class Commands {
enableLinter(): void;
disableLinter(): void;
toggleActiveEditor(): void;
showDebug(...args: Parameters<typeof showDebug>): void;
onShouldLint(callback: (...args: Array<any>) => any): Disposable;
onShouldDebug(callback: (...args: Array<any>) => any): Disposable;
onShouldToggleActiveEditor(callback: (...args: Array<any>) => any): Disposable;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/toggle-view.d.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { Disposable } from 'atom';
declare type ToggleAction = 'enable' | 'disable';
export default class ToggleProviders {
export default class ToggleView {
private action;
private emitter;
private providers;
private subscriptions;
private disabledProviders;
constructor(action: ToggleAction, providers: Array<string>);
getItems(): Promise<Array<string>>;
process(name: string): Promise<void>;
show(): Promise<void>;
getItems(): Array<string>;
process(name: string): void;
show(): void;
onDidDispose(callback: () => any): Disposable;
onDidDisable(callback: (name: string) => any): Disposable;
dispose(): void;
Expand Down
Loading

0 comments on commit c9a52a3

Please sign in to comment.