minotor
Version:
A lightweight client-side transit routing library.
55 lines (54 loc) • 2 kB
TypeScript
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
export declare const protobufPackage = "minotor.stops";
export declare enum LocationType {
SIMPLE_STOP_OR_PLATFORM = 0,
STATION = 1,
ENTRANCE_EXIT = 2,
GENERIC_NODE = 3,
BOARDING_AREA = 4,
UNRECOGNIZED = -1
}
export declare function locationTypeFromJSON(object: any): LocationType;
export declare function locationTypeToJSON(object: LocationType): string;
export interface Stop {
name: string;
sourceStopId: string;
lat?: number | undefined;
lon?: number | undefined;
children: number[];
parent?: number | undefined;
locationType: LocationType;
platform?: string | undefined;
}
export interface StopsMap {
version: string;
stops: {
[key: number]: Stop;
};
}
export interface StopsMap_StopsEntry {
key: number;
value: Stop | undefined;
}
export declare const Stop: MessageFns<Stop>;
export declare const StopsMap: MessageFns<StopsMap>;
export declare const StopsMap_StopsEntry: MessageFns<StopsMap_StopsEntry>;
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
[K in keyof T]?: DeepPartial<T[K]>;
} : Partial<T>;
type KeysOfUnion<T> = T extends T ? keyof T : never;
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
[K in keyof P]: Exact<P[K], I[K]>;
} & {
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
};
export interface MessageFns<T> {
encode(message: T, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): T;
fromJSON(object: any): T;
toJSON(message: T): unknown;
create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
}
export {};