index.d.ts 351 Bytes
Newer Older
qianyuheng committed
1 2 3 4 5 6 7 8 9 10 11
import OriginTypography from './Typography';
import Text from './Text';
import Title from './Title';
import Paragraph from './Paragraph';
declare type TypographyProps = typeof OriginTypography & {
    Text: typeof Text;
    Title: typeof Title;
    Paragraph: typeof Paragraph;
};
declare const Typography: TypographyProps;
export default Typography;