UNPKG

ionic-native-http-connection-backend

Version:
11 lines (10 loc) 300 B
interface Collection { keys: () => string[]; get: (key: string) => string | null; getAll: (key: string) => string[]; } declare type CollectionObject = { [key: string]: string | null; }; export declare const collectionToObject: (collection: Collection) => CollectionObject; export {};