mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 04:01:58 +00:00
export patchdb types
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { AlpnInfo } from "./AlpnInfo";
|
||||
|
||||
export type AddSslOptions = { scheme: string | null, preferredExternalPort: number, addXForwardedHeaders: boolean | null, };
|
||||
export type AddSslOptions = { scheme: string, preferredExternalPort: number, alpn: AlpnInfo, };
|
||||
3
core/startos/bindings/Alerts.ts
Normal file
3
core/startos/bindings/Alerts.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type Alerts = { install: string | null, uninstall: string | null, restore: string | null, start: string | null, stop: string | null, };
|
||||
5
core/startos/bindings/AllPackageData.ts
Normal file
5
core/startos/bindings/AllPackageData.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { PackageDataEntry } from "./PackageDataEntry";
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type AllPackageData = { [key: PackageId]: PackageDataEntry };
|
||||
4
core/startos/bindings/AlpnInfo.ts
Normal file
4
core/startos/bindings/AlpnInfo.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { MaybeUtf8String } from "./MaybeUtf8String";
|
||||
|
||||
export type AlpnInfo = "reflect" | { "specified": Array<MaybeUtf8String> };
|
||||
3
core/startos/bindings/BackupProgress.ts
Normal file
3
core/startos/bindings/BackupProgress.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type BackupProgress = { complete: boolean, };
|
||||
4
core/startos/bindings/BindInfo.ts
Normal file
4
core/startos/bindings/BindInfo.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { BindOptions } from "./BindOptions";
|
||||
|
||||
export type BindInfo = { options: BindOptions, assignedLanPort: number | null, };
|
||||
@@ -1,5 +1,4 @@
|
||||
// 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 { BindOptionsSecure } from "./BindOptionsSecure";
|
||||
|
||||
export type BindOptions = { scheme: string | null, preferredExternalPort: number, addSsl: AddSslOptions | null, secure: BindOptionsSecure | null, };
|
||||
export type BindOptions = { scheme: string, preferredExternalPort: number, addSsl: AddSslOptions | null, secure: boolean, ssl: boolean, };
|
||||
3
core/startos/bindings/ConnectionAddresses.ts
Normal file
3
core/startos/bindings/ConnectionAddresses.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type ConnectionAddresses = { tor: Array<string>, clearnet: Array<string>, };
|
||||
5
core/startos/bindings/CurrentDependencies.ts
Normal file
5
core/startos/bindings/CurrentDependencies.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { CurrentDependencyInfo } from "./CurrentDependencyInfo";
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type CurrentDependencies = { [key: PackageId]: CurrentDependencyInfo };
|
||||
4
core/startos/bindings/CurrentDependencyInfo.ts
Normal file
4
core/startos/bindings/CurrentDependencyInfo.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { DataUrl } from "./DataUrl";
|
||||
|
||||
export type CurrentDependencyInfo = { title: string, icon: DataUrl, registry: string, versionSpec: string, } & ({ "kind": "exists" } | { "kind": "running", healthChecks: string[], });
|
||||
3
core/startos/bindings/DataUrl.ts
Normal file
3
core/startos/bindings/DataUrl.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type DataUrl = string;
|
||||
3
core/startos/bindings/DepInfo.ts
Normal file
3
core/startos/bindings/DepInfo.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type DepInfo = { description: string | null, optional: boolean, };
|
||||
5
core/startos/bindings/Dependencies.ts
Normal file
5
core/startos/bindings/Dependencies.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { DepInfo } from "./DepInfo";
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type Dependencies = { [key: PackageId]: DepInfo };
|
||||
4
core/startos/bindings/DependencyConfigErrors.ts
Normal file
4
core/startos/bindings/DependencyConfigErrors.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { PackageId } from "./PackageId";
|
||||
|
||||
export type DependencyConfigErrors = { [key: PackageId]: string };
|
||||
@@ -1,3 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type DependencyRequirement = { "kind": "running", id: string, healthChecks: string[], versionSpec: string, url: string, } | { "kind": "exists", id: string, versionSpec: string, url: string, };
|
||||
export type DependencyRequirement = { "kind": "running", id: string, healthChecks: string[], versionSpec: string, registry: string, } | { "kind": "exists", id: string, versionSpec: string, registry: string, };
|
||||
3
core/startos/bindings/Description.ts
Normal file
3
core/startos/bindings/Description.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type Description = { short: string, long: string, };
|
||||
3
core/startos/bindings/Duration.ts
Normal file
3
core/startos/bindings/Duration.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type Duration = string;
|
||||
@@ -1,3 +0,0 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type ExposeUiParams = { "type": "object", value: {[key: string]: ExposeUiParams}, } | { "type": "string", path: string, description: string | null, masked: boolean, copyable: boolean | null, qr: boolean | null, };
|
||||
@@ -1,3 +0,0 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type ExposedUI = { "type": "object", value: {[key: string]: ExposedUI}, description: string | null, } | { "type": "string", path: string, description: string | null, masked: boolean, copyable: boolean | null, qr: boolean | null, };
|
||||
5
core/startos/bindings/FullProgress.ts
Normal file
5
core/startos/bindings/FullProgress.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { NamedProgress } from "./NamedProgress";
|
||||
import type { Progress } from "./Progress";
|
||||
|
||||
export type FullProgress = { overall: Progress, phases: Array<NamedProgress>, };
|
||||
3
core/startos/bindings/Governor.ts
Normal file
3
core/startos/bindings/Governor.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type Governor = string;
|
||||
3
core/startos/bindings/HardwareRequirements.ts
Normal file
3
core/startos/bindings/HardwareRequirements.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type HardwareRequirements = { device: { [key: string]: string }, ram: bigint | null, arch: Array<string> | null, };
|
||||
3
core/startos/bindings/HealthCheckId.ts
Normal file
3
core/startos/bindings/HealthCheckId.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type HealthCheckId = string;
|
||||
3
core/startos/bindings/HealthCheckResult.ts
Normal file
3
core/startos/bindings/HealthCheckResult.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type HealthCheckResult = { "result": "success" } | { "result": "disabled" } | { "result": "starting" } | { "result": "loading", message: string, } | { "result": "failure", error: string, };
|
||||
6
core/startos/bindings/Host.ts
Normal file
6
core/startos/bindings/Host.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { BindInfo } from "./BindInfo";
|
||||
import type { HostAddress } from "./HostAddress";
|
||||
import type { HostKind } from "./HostKind";
|
||||
|
||||
export type Host = { kind: HostKind, bindings: { [key: number]: BindInfo }, addresses: Array<HostAddress>, primary: HostAddress | null, };
|
||||
3
core/startos/bindings/HostAddress.ts
Normal file
3
core/startos/bindings/HostAddress.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type HostAddress = { "kind": "onion", address: string, };
|
||||
3
core/startos/bindings/HostId.ts
Normal file
3
core/startos/bindings/HostId.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type HostId = string;
|
||||
5
core/startos/bindings/HostInfo.ts
Normal file
5
core/startos/bindings/HostInfo.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Host } from "./Host";
|
||||
import type { HostId } from "./HostId";
|
||||
|
||||
export type HostInfo = { [key: HostId]: Host };
|
||||
3
core/startos/bindings/HostKind.ts
Normal file
3
core/startos/bindings/HostKind.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type HostKind = "multi";
|
||||
3
core/startos/bindings/ImageId.ts
Normal file
3
core/startos/bindings/ImageId.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type ImageId = string;
|
||||
4
core/startos/bindings/InstalledState.ts
Normal file
4
core/startos/bindings/InstalledState.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Manifest } from "./Manifest";
|
||||
|
||||
export type InstalledState = { manifest: Manifest, };
|
||||
5
core/startos/bindings/InstallingInfo.ts
Normal file
5
core/startos/bindings/InstallingInfo.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { FullProgress } from "./FullProgress";
|
||||
import type { Manifest } from "./Manifest";
|
||||
|
||||
export type InstallingInfo = { newManifest: Manifest, progress: FullProgress, };
|
||||
4
core/startos/bindings/InstallingState.ts
Normal file
4
core/startos/bindings/InstallingState.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { InstallingInfo } from "./InstallingInfo";
|
||||
|
||||
export type InstallingState = { installingInfo: InstallingInfo, };
|
||||
3
core/startos/bindings/IpInfo.ts
Normal file
3
core/startos/bindings/IpInfo.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type IpInfo = { ipv4Range: string | null, ipv4: string | null, ipv6Range: string | null, ipv6: string | null, };
|
||||
6
core/startos/bindings/MainStatus.ts
Normal file
6
core/startos/bindings/MainStatus.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Duration } from "./Duration";
|
||||
import type { HealthCheckId } from "./HealthCheckId";
|
||||
import type { HealthCheckResult } from "./HealthCheckResult";
|
||||
|
||||
export type MainStatus = { "status": "stopped" } | { "status": "restarting" } | { "status": "stopping", timeout: Duration, } | { "status": "starting" } | { "status": "running", started: string, health: { [key: HealthCheckId]: HealthCheckResult }, } | { "status": "backingUp", started: string | null, health: { [key: HealthCheckId]: HealthCheckResult }, };
|
||||
10
core/startos/bindings/Manifest.ts
Normal file
10
core/startos/bindings/Manifest.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Alerts } from "./Alerts";
|
||||
import type { Dependencies } from "./Dependencies";
|
||||
import type { Description } from "./Description";
|
||||
import type { HardwareRequirements } from "./HardwareRequirements";
|
||||
import type { ImageId } from "./ImageId";
|
||||
import type { PackageId } from "./PackageId";
|
||||
import type { VolumeId } from "./VolumeId";
|
||||
|
||||
export type Manifest = { id: PackageId, title: string, version: string, releaseNotes: string, license: string, replaces: Array<string>, wrapperRepo: string, upstreamRepo: string, supportSite: string, marketingSite: string, donationUrl: string | null, description: Description, images: Array<ImageId>, assets: Array<VolumeId>, volumes: Array<VolumeId>, alerts: Alerts, dependencies: Dependencies, hardwareRequirements: HardwareRequirements, gitHash: string | null, osVersion: string, hasConfig: boolean, };
|
||||
3
core/startos/bindings/MaybeUtf8String.ts
Normal file
3
core/startos/bindings/MaybeUtf8String.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type MaybeUtf8String = string | number[];
|
||||
4
core/startos/bindings/NamedProgress.ts
Normal file
4
core/startos/bindings/NamedProgress.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Progress } from "./Progress";
|
||||
|
||||
export type NamedProgress = { name: string, progress: Progress, };
|
||||
8
core/startos/bindings/PackageDataEntry.ts
Normal file
8
core/startos/bindings/PackageDataEntry.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { CurrentDependencies } from "./CurrentDependencies";
|
||||
import type { DataUrl } from "./DataUrl";
|
||||
import type { HostInfo } from "./HostInfo";
|
||||
import type { PackageState } from "./PackageState";
|
||||
import type { Status } from "./Status";
|
||||
|
||||
export type PackageDataEntry = { stateInfo: PackageState, status: Status, marketplaceUrl: string | null, developerKey: string, icon: DataUrl, lastBackup: string | null, currentDependencies: CurrentDependencies, hosts: HostInfo, storeExposedDependents: string[], };
|
||||
3
core/startos/bindings/PackageId.ts
Normal file
3
core/startos/bindings/PackageId.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type PackageId = string;
|
||||
6
core/startos/bindings/PackageState.ts
Normal file
6
core/startos/bindings/PackageState.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { InstalledState } from "./InstalledState";
|
||||
import type { InstallingState } from "./InstallingState";
|
||||
import type { UpdatingState } from "./UpdatingState";
|
||||
|
||||
export type PackageState = { "state": "installing" } & InstallingState | { "state": "restoring" } & InstallingState | { "state": "updating" } & UpdatingState | { "state": "installed" } & InstalledState | { "state": "removing" } & InstalledState;
|
||||
3
core/startos/bindings/Progress.ts
Normal file
3
core/startos/bindings/Progress.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type Progress = boolean | { done: bigint, total: bigint | null, };
|
||||
5
core/startos/bindings/Public.ts
Normal file
5
core/startos/bindings/Public.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { AllPackageData } from "./AllPackageData";
|
||||
import type { ServerInfo } from "./ServerInfo";
|
||||
|
||||
export type Public = { serverInfo: ServerInfo, packageData: AllPackageData, ui: any, };
|
||||
16
core/startos/bindings/ServerInfo.ts
Normal file
16
core/startos/bindings/ServerInfo.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { ConnectionAddresses } from "./ConnectionAddresses";
|
||||
import type { Governor } from "./Governor";
|
||||
import type { IpInfo } from "./IpInfo";
|
||||
import type { ServerStatus } from "./ServerStatus";
|
||||
import type { WifiInfo } from "./WifiInfo";
|
||||
|
||||
export type ServerInfo = { arch: string, platform: string, id: string, hostname: string, version: string, lastBackup: string | null,
|
||||
/**
|
||||
* Used in the wifi to determine the region to set the system to
|
||||
*/
|
||||
lastWifiRegion: string | null, eosVersionCompat: string, lanAddress: string, onionAddress: string,
|
||||
/**
|
||||
* for backwards compatibility
|
||||
*/
|
||||
torAddress: string, ipInfo: { [key: string]: IpInfo }, statusInfo: ServerStatus, wifi: WifiInfo, unreadNotificationCount: bigint, connectionAddresses: ConnectionAddresses, passwordHash: string, pubkey: string, caFingerprint: string, ntpSynced: boolean, zram: boolean, governor: Governor | null, };
|
||||
3
core/startos/bindings/ServerSpecs.ts
Normal file
3
core/startos/bindings/ServerSpecs.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type ServerSpecs = { cpu: string, disk: string, memory: string, };
|
||||
6
core/startos/bindings/ServerStatus.ts
Normal file
6
core/startos/bindings/ServerStatus.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { BackupProgress } from "./BackupProgress";
|
||||
import type { PackageId } from "./PackageId";
|
||||
import type { UpdateProgress } from "./UpdateProgress";
|
||||
|
||||
export type ServerStatus = { backupProgress: { [key: PackageId]: BackupProgress } | null, updated: boolean, updateProgress: UpdateProgress | null, shuttingDown: boolean, restarting: boolean, };
|
||||
@@ -1,3 +1,5 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { DependencyConfigErrors } from "./DependencyConfigErrors";
|
||||
import type { MainStatus } from "./MainStatus";
|
||||
|
||||
export type Status = "running" | "stopped";
|
||||
export type Status = { configured: boolean, main: MainStatus, dependencyConfigErrors: DependencyConfigErrors, };
|
||||
3
core/startos/bindings/UpdateProgress.ts
Normal file
3
core/startos/bindings/UpdateProgress.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type UpdateProgress = { size: bigint | null, downloaded: bigint, };
|
||||
5
core/startos/bindings/UpdatingState.ts
Normal file
5
core/startos/bindings/UpdatingState.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { InstallingInfo } from "./InstallingInfo";
|
||||
import type { Manifest } from "./Manifest";
|
||||
|
||||
export type UpdatingState = { manifest: Manifest, installingInfo: InstallingInfo, };
|
||||
3
core/startos/bindings/VolumeId.ts
Normal file
3
core/startos/bindings/VolumeId.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type VolumeId = string;
|
||||
3
core/startos/bindings/WifiInfo.ts
Normal file
3
core/startos/bindings/WifiInfo.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type WifiInfo = { ssids: Array<string>, selected: string | null, connected: string | null, };
|
||||
Reference in New Issue
Block a user