react-native-unordered-list
Version:
A simple React Native component to display an unordered list (bullet points).
19 lines (17 loc) • 450 B
TypeScript
/*
* Project: react-native-unordered-list
* File: /index.d.ts
* Author: Qi Xi
* Email: me@imxiqi.com
* File Created: Monday, 20th April 2020 8:08:39 pm
* Description: Declaration File
*/
interface Props {
children: any;
unorderedListLevel?: number;
bulletUnicode?: number;
color?: string;
style?: any;
}
declare const _default: ({ children, unorderedListLevel, bulletUnicode, color, style }: Props) => any;
export default _default;