Markdown Overhaul (#2624)

Rebuilt Markdown editor/views into new components
This commit is contained in:
Alec Merdler 2017-05-10 14:18:37 -07:00 committed by GitHub
parent 945510dcf0
commit 6b54279bb7
50 changed files with 819 additions and 3896 deletions

View file

@ -104,6 +104,7 @@ export type Trigger = {
service: any;
};
/**
* Represents an apostille signature document, with extra expiration information.
*/
@ -118,6 +119,7 @@ export type ApostilleSignatureDocument = {
error: boolean
};
/**
* An apostille document containing signatures for a tag.
*/
@ -127,4 +129,20 @@ export type ApostilleTagDocument = {
// The hashes for the tag.
hashes: {string: string}
};
};
/**
* A type representing a Markdown symbol.
*/
export type MarkdownSymbol = 'heading1'
| 'heading2'
| 'heading3'
| 'bold'
| 'italics'
| 'bulleted-list'
| 'numbered-list'
| 'quote'
| 'code'
| 'link'
| 'code';