Skip to content

Instantly share code, notes, and snippets.

@kofno
Created June 25, 2017 14:36
Show Gist options
  • Select an option

  • Save kofno/246189259b01fa5bfcdbf8edf82b139d to your computer and use it in GitHub Desktop.

Select an option

Save kofno/246189259b01fa5bfcdbf8edf82b139d to your computer and use it in GitHub Desktop.
Structured decoder signature
/**
* Applies the `decoder` to all of the elements of an array.
*/
export declare const array: <A>(decoder: Decoder<A>) => Decoder<A[]>;
/**
* Decodes the value at a particular field in a JavaScript object.
*/
export declare const field: <A>(name: string, decoder: Decoder<A>) => Decoder<A>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment