mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* Feature: Add in the clear bindings * wip: Working on network * fix: Make it so the config gives the url * chore: Remove the repeated types * chore: Add in the todo's here * chore: UPdate and remove some poorly name var * chore: Remove the clear-bindings impl * chore: Remove the wrapper * handle HostnameInfo for Host bindings Co-authored-by: Jade <Blu-J@users.noreply.github.com> * ?? * chore: Make the install work * Fix: Url's not being created * chore: Fix the local onion in url * include port in hostname * Chore of adding a comment just to modify. --------- Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: Jade <Blu-J@users.noreply.github.com>
15 lines
459 B
TypeScript
15 lines
459 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { AddSslOptions } from "./AddSslOptions"
|
|
import type { HostId } from "./HostId"
|
|
import type { HostKind } from "./HostKind"
|
|
import type { Security } from "./Security"
|
|
|
|
export type BindParams = {
|
|
kind: HostKind
|
|
id: HostId
|
|
internalPort: number
|
|
preferredExternalPort: number
|
|
addSsl: AddSslOptions | null
|
|
secure: Security | null
|
|
}
|