mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31: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>
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import * as T from "../types"
|
|
|
|
import "./nullIfEmpty"
|
|
import "./fileHelper"
|
|
import "../store/getStore"
|
|
import "./deepEqual"
|
|
import "./deepMerge"
|
|
import "./Overlay"
|
|
import "./once"
|
|
|
|
export { GetServiceInterface, getServiceInterface } from "./getServiceInterface"
|
|
export { getServiceInterfaces } from "./getServiceInterfaces"
|
|
export { addressHostToUrl } from "./getServiceInterface"
|
|
export { hostnameInfoToAddress } from "./Hostname"
|
|
// prettier-ignore
|
|
export type FlattenIntersection<T> =
|
|
T extends ArrayLike<any> ? T :
|
|
T extends object ? {} & {[P in keyof T]: T[P]} :
|
|
T;
|
|
|
|
export type _<T> = FlattenIntersection<T>
|
|
|
|
export const isKnownError = (e: unknown): e is T.KnownError =>
|
|
e instanceof Object && ("error" in e || "error-code" in e)
|
|
|
|
declare const affine: unique symbol
|
|
|
|
export type Affine<A> = { [affine]: A }
|
|
|
|
type NeverPossible = { [affine]: string }
|
|
export type NoAny<A> = NeverPossible extends A
|
|
? keyof NeverPossible extends keyof A
|
|
? never
|
|
: A
|
|
: A
|
|
|
|
export { getDefaultString } from "./getDefaultString"
|