This commit is contained in:
insanity 2018-06-14 18:20:08 +09:00
parent 823b754a24
commit 220f714d88
3 changed files with 4 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.12",
"version": "0.0.13",
"license": "COMMERCIAL",
"private": true,
"main": "./index.js",

View File

@ -8,5 +8,8 @@ export interface InfraHostIP extends Infra {
metaIPType?: MetaIPType;
address?: string;
mac?: string;
iface: string;
gateway: string;
createDate?: Date;
}

View File

@ -9,5 +9,4 @@ export interface InfraZone extends Infra {
metaIPType?: MetaIPType;
address?: string;
mac?: string;
gateway?: string;
}