Files
start-os/sdk/lib/osBindings/PackageInfo.ts
Aiden McClelland 2568bfde5e create skeleton
2024-05-31 13:46:58 -06:00

11 lines
379 B
TypeScript

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Guid } from "./Guid"
import type { PackageVersionInfo } from "./PackageVersionInfo"
import type { Version } from "./Version"
export type PackageInfo = {
authorized: Array<Guid>
versions: { [key: Version]: PackageVersionInfo }
categories: string[]
}