File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ import { MarkdownIt, Token } from 'markdown-it';
33import { ComponentType , ReactNode } from 'react' ;
44import { StyleSheet , View } from 'react-native' ;
55
6+ export function applyStyle ( children : any [ ] , styles : any , type : string ) : any ;
7+
68export function getUniqueID ( ) : string ;
79export function openUrl ( url : string ) : void ;
810
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import React, { Component } from 'react';
66import PropTypes from 'prop-types' ;
77import { View } from 'react-native' ;
88import { parser , stringToTokens } from './lib/parser' ;
9+ import applyStyle from './lib/util/applyStyle' ;
910import getUniqueID from './lib/util/getUniqueID' ;
1011import hasParents from './lib/util/hasParents' ;
1112import openUrl from './lib/util/openUrl' ;
@@ -21,6 +22,7 @@ import { styles } from './lib/styles';
2122 *
2223 */
2324export {
25+ applyStyle ,
2426 getUniqueID ,
2527 openUrl ,
2628 hasParents ,
You can’t perform that action at this time.
0 commit comments