UNPKG

react-native-markdown-renderer

Version:

Markdown renderer for react-native, with CommonMark spec support + adds syntax extensions & sugar (URL autolinking, typographer).

9 lines (8 loc) 206 B
export default class Token { constructor(type, nesting = 0, children = null, block = false) { this.type = type; this.nesting = nesting; this.children = children; this.block = block; } }