mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 04:01:58 +00:00
18 lines
546 B
TypeScript
18 lines
546 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { HostnameInfo } from './HostnameInfo'
|
|
|
|
export type DerivedAddressInfo = {
|
|
/**
|
|
* User-controlled: private addresses the user has disabled
|
|
*/
|
|
privateDisabled: Array<HostnameInfo>
|
|
/**
|
|
* User-controlled: public addresses the user has enabled
|
|
*/
|
|
publicEnabled: Array<HostnameInfo>
|
|
/**
|
|
* COMPUTED: NetServiceData::update — all possible addresses for this binding
|
|
*/
|
|
possible: Array<HostnameInfo>
|
|
}
|