I hereby claim:
- I am styfle on github.
- I am styfle (https://keybase.io/styfle) on keybase.
- I have a public key ASBNLU4Ir9YfbXm5mKOxx4PCrpCIUJ75lbl40R4oyZNkUwo
To claim this, I am signing this object:
{ | |
"status": "ok", | |
"source": "the-new-york-times", | |
"sortBy": "top", | |
"articles": [{ | |
"author": "Michael M. Grynbaum", | |
"title": "Wall Street Journal Editor Admonishes Reporters Over Trump Coverage", | |
"description": "In internal emails, Gerard Baker described the draft of an article about the president’s rally in Phoenix as “commentary dressed up as news reporting.”", | |
"url": "https://www.nytimes.com/2017/08/23/business/media/wall-street-journal-editor-admonishes-reporters-over-trump-coverage.html", | |
"urlToImage": "https://static01.nyt.com/images/2017/08/24/business/24wsj1/24wsj1-facebookJumbo.jpg", |
I hereby claim:
To claim this, I am signing this object:
type Opt = { id: string, name: string } | |
interface MultiProps { | |
isMultiple: true; | |
options: Opt[]; | |
id: string[]; | |
onChange: (id: string[]) => void; | |
} | |
interface SingleProps { |
function isDate(obj: any): obj is Date { | |
return typeof obj === 'object' && 'toISOString' in obj; | |
} | |
function isString(obj: any): obj is string { | |
return typeof obj === 'string'; | |
} | |
interface JWT { | |
id: string; |
interface Props { | |
value: number; | |
onChange: (value: number) => void; | |
widthPx?: number; | |
inline?: boolean; | |
disabled?: boolean; | |
} | |
interface State { | |
valueAsString: string; |