Skip to content

Commit

Permalink
updating deps
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Apr 1, 2020
1 parent 94fc326 commit 13c8505
Show file tree
Hide file tree
Showing 13 changed files with 736 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -2,9 +2,9 @@ language: node_js
sudo: required
matrix:
include:
- node_js: "7"
script: "npm test"
- node_js: "8"
script: "npm run travis"
script: "npm test"
- node_js: "12"
script: "npm test"
- node_js: "13"
script: "npm run travis"
3 changes: 3 additions & 0 deletions dist/index.d.ts
@@ -0,0 +1,3 @@
export * from './themes';
export * from './monitor';
export * from './types';
8 changes: 8 additions & 0 deletions dist/index.js
@@ -0,0 +1,8 @@
"use strict";
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
Object.defineProperty(exports, "__esModule", { value: true });
__export(require("./themes"));
__export(require("./monitor"));
__export(require("./types"));
36 changes: 36 additions & 0 deletions dist/monitor.d.ts
@@ -0,0 +1,36 @@
import { ITheme, ThemeName } from './themes';
import { EventName, IClient, IEventContext, IInitOptions } from './types';
export declare class Monitor {
/**
* Attachment state.
*/
private state;
/**
* Attached Initialization Options object.
*/
private initOptions;
/**
* Current Color Theme.
*/
cct: ITheme;
/**
* Detailed output flag.
*/
detailed: boolean;
constructor();
connect(client: IClient, dc: any, useCount: number): void;
disconnect(client: IClient, dc: any): void;
query(e: IEventContext): void;
task(e: IEventContext): void;
transact(e: IEventContext): void;
error(err: any, e: IEventContext): void;
attach(initOptions: IInitOptions, options?: {
events?: EventName[];
override?: boolean;
}): void;
isAttached(): boolean;
detach(): void;
setTheme(t: ITheme | ThemeName): void;
setLog(log: any): void;
private print;
}

0 comments on commit 13c8505

Please sign in to comment.