This commit is contained in:
crusader 2018-06-14 12:24:09 +09:00
parent fe40e8bbef
commit 823b754a24
2 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,7 @@
"name": "@overflow/commons-typescript",
"author": "Loafle <rnd@loafle.com>",
"description": "Commons module of overflow",
"version": "0.0.11",
"version": "0.0.12",
"license": "COMMERCIAL",
"private": true,
"main": "./index.js",
@ -34,4 +34,4 @@
"typedoc": "^0.11.1",
"typescript": "^2.8.3"
}
}
}

View File

@ -1,6 +1,7 @@
import { MetaNoAuthProbeStatus } from '../meta';
import { Domain } from '../domain';
import { Probe } from '../probe';
import { InfraHost } from '../infra';
export interface NoAuthProbe {
id?: number;
@ -13,4 +14,6 @@ export interface NoAuthProbe {
connectDate?: Date;
connectAddress?: string;
createDate?: Date;
infraHost?: InfraHost;
}