51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
import type { Message } from "@bufbuild/protobuf";
|
|
/**
|
|
* Describes the file quixos/package.proto.
|
|
*/
|
|
export declare const file_quixos_package: GenFile;
|
|
/**
|
|
* @generated from message quixos.PackageDescriptor
|
|
*/
|
|
export type PackageDescriptor = Message<"quixos.PackageDescriptor"> & {
|
|
/**
|
|
* @generated from field: string package_id = 1;
|
|
*/
|
|
packageId: string;
|
|
/**
|
|
* @generated from field: string package_revision_id = 2;
|
|
*/
|
|
packageRevisionId: string;
|
|
/**
|
|
* @generated from field: string runtime_protocol_version = 3;
|
|
*/
|
|
runtimeProtocolVersion: string;
|
|
/**
|
|
* @generated from field: repeated quixos.RuntimeExport exports = 4;
|
|
*/
|
|
exports: RuntimeExport[];
|
|
};
|
|
/**
|
|
* Describes the message quixos.PackageDescriptor.
|
|
* Use `create(PackageDescriptorSchema)` to create a new message.
|
|
*/
|
|
export declare const PackageDescriptorSchema: GenMessage<PackageDescriptor>;
|
|
/**
|
|
* @generated from message quixos.RuntimeExport
|
|
*/
|
|
export type RuntimeExport = Message<"quixos.RuntimeExport"> & {
|
|
/**
|
|
* @generated from field: string export_id = 1;
|
|
*/
|
|
exportId: string;
|
|
/**
|
|
* @generated from field: string runtime_symbol = 2;
|
|
*/
|
|
runtimeSymbol: string;
|
|
};
|
|
/**
|
|
* Describes the message quixos.RuntimeExport.
|
|
* Use `create(RuntimeExportSchema)` to create a new message.
|
|
*/
|
|
export declare const RuntimeExportSchema: GenMessage<RuntimeExport>;
|
|
//# sourceMappingURL=package_pb.d.ts.map
|