Skip to content

Instantly share code, notes, and snippets.

/**
* The Contentful content delivery API is very dynamic, and Contentful has not
* strongly typed the interface for the options of the getEntries operation.
*
* This interface is an attempt to document the properties of these options.
*
* Ref: https://www.contentful.com/developers/docs/references/content-delivery-api/
*/
export interface ContentfulQueryOptions {
/**
@jmptr
jmptr / miserables.json
Created October 16, 2019 15:10
miserables.json
{
"nodes": [
{"id": "Myriel", "group": 1},
{"id": "Napoleon", "group": 1},
{"id": "Mlle.Baptistine", "group": 1},
{"id": "Mme.Magloire", "group": 1},
{"id": "CountessdeLo", "group": 1},
{"id": "Geborand", "group": 1},
{"id": "Champtercier", "group": 1},
{"id": "Cravatte", "group": 1},
@jmptr
jmptr / template.md
Last active May 15, 2018 16:29
use case template

Use Case:

CHARACTERISTIC INFORMATION

Goal in Context: <a longer statement of the goal, if needed>

Scope:

Level: <one of: Summary, Primary task, Subfunction>

@jmptr
jmptr / readme.md
Last active February 12, 2018 19:26
TypeScript Naming Conventions

How I name my TypeScript modules

Pascal Casing is for Classes

If the module exports a class, then it should use Pascal casing

Examples:

DatabaseRepository.ts