16 lines
307 B
TypeScript
Raw Normal View History

2018-09-04 01:12:10 +09:00
import { Port } from './Port';
import { MetaCryptoType } from '../meta';
export interface Service {
metaCryptoType?: MetaCryptoType;
key?: string;
2018-09-11 17:04:22 +09:00
name?: string;
2018-09-04 01:12:10 +09:00
description?: string;
2018-09-11 17:04:22 +09:00
meta?: Map<string, Map<string, string>>;
discoveredBy?: string[];
2018-09-04 01:12:10 +09:00
discoveredDate?: Date;
2018-09-11 17:04:22 +09:00
port?: Port;
2018-09-04 01:12:10 +09:00
}