12 lines
372 B
TypeScript
12 lines
372 B
TypeScript
import type { AddressInfo } from './AddressInfo';
|
|
import type { ServiceInterfaceId } from './ServiceInterfaceId';
|
|
import type { ServiceInterfaceType } from './ServiceInterfaceType';
|
|
export type ServiceInterface = {
|
|
id: ServiceInterfaceId;
|
|
name: string;
|
|
description: string;
|
|
masked: boolean;
|
|
addressInfo: AddressInfo;
|
|
type: ServiceInterfaceType;
|
|
};
|