File tree 2 files changed +4
-0
lines changed 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';
3
3
import { ComponentType , ReactNode } from 'react' ;
4
4
import { StyleSheet , View } from 'react-native' ;
5
5
6
+ export function applyStyle ( children : any [ ] , styles : any , type : string ) : any ;
7
+
6
8
export function getUniqueID ( ) : string ;
7
9
export function openUrl ( url : string ) : void ;
8
10
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import React, { Component } from 'react';
6
6
import PropTypes from 'prop-types' ;
7
7
import { View } from 'react-native' ;
8
8
import { parser , stringToTokens } from './lib/parser' ;
9
+ import applyStyle from './lib/util/applyStyle' ;
9
10
import getUniqueID from './lib/util/getUniqueID' ;
10
11
import hasParents from './lib/util/hasParents' ;
11
12
import openUrl from './lib/util/openUrl' ;
@@ -21,6 +22,7 @@ import { styles } from './lib/styles';
21
22
*
22
23
*/
23
24
export {
25
+ applyStyle ,
24
26
getUniqueID ,
25
27
openUrl ,
26
28
hasParents ,
You can’t perform that action at this time.
0 commit comments