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