10 lines
285 B
TypeScript
10 lines
285 B
TypeScript
import type { BindOptions } from './BindOptions';
|
|
import type { DerivedAddressInfo } from './DerivedAddressInfo';
|
|
import type { NetInfo } from './NetInfo';
|
|
export type BindInfo = {
|
|
enabled: boolean;
|
|
options: BindOptions;
|
|
net: NetInfo;
|
|
addresses: DerivedAddressInfo;
|
|
};
|