Files
recap/node_modules/@start9labs/start-sdk/base/lib/osBindings/ExportServiceInterfaceParams.d.ts
T

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;
};