UNPKG

@maicol07/coloquent

Version:

Library for retrieving model objects from a JSON-API, with a fluent syntax inspired by Laravel Eloquent.

12 lines (11 loc) 230 B
export declare class Map<T> { protected data: { [key: string]: T; }; constructor(); get(key: string): T; set(key: string, value: T): void; toArray(): { [key: string]: T; }; }