UNPKG

@tmlmobilidade/types

Version:
7 lines (6 loc) 313 B
type ValueMapper<Our extends number | string, Gtfs extends number | string> = Record<Our, Gtfs>; export declare function createGtfsMapper<Our extends number | string, Gtfs extends number | string>(map: ValueMapper<Our, Gtfs>): { fromGtfs: (value: Gtfs) => Our; toGtfs: (value: Our) => Gtfs; }; export {};