Files
start-os/sdk/base/lib/osBindings/DerivedAddressInfo.ts
Aiden McClelland db7f3341ac wip refactor
2026-02-12 14:51:33 -07:00

18 lines
533 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
*/
enabled: Array<HostnameInfo>
/**
* User-controlled: public addresses the user has enabled
*/
disabled: Array<HostnameInfo>
/**
* COMPUTED: NetServiceData::update — all possible addresses for this binding
*/
possible: Array<HostnameInfo>
}