UNPKG

@odata2ts/converter-v2-to-v4

Version:

A set of odata2ts compatible converters to convert certain OData V2 types to their V4 analog

7 lines (6 loc) 251 B
import { ValueConverter } from "@odata2ts/converter-api"; /** * V2 type Edm.Time is actually specified in ISO8601 duration format. * Hence, only relabeling is needed. */ export declare const timeToDurationConverter: ValueConverter<string, string>;