Skip to content

Instantly share code, notes, and snippets.

@jumpinjackie
jumpinjackie / immutable.ts
Last active September 28, 2018 13:41
Immutable.JS TypeScript 2.8 edition
//Some example interface
interface IGeographicCoordinate {
lat: number;
lng: number;
}
interface IPlacemark {
id: number;
coordinate: IGeographicCoordinate;
name: string;