Skip to content

Commit

Permalink
fix(list): missing type export
Browse files Browse the repository at this point in the history
  • Loading branch information
SiTaggart committed Jan 25, 2021
1 parent 0a954a7 commit 2970394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/paste-core/components/list/src/index.tsx
Expand Up @@ -2,7 +2,7 @@ import * as React from 'react';
import {Text, safelySpreadTextProps} from '@twilio-paste/text';
import {Space, isMarginTokenProp} from '@twilio-paste/style-props';

interface BaseListProps extends React.OlHTMLAttributes<HTMLElement> {
export interface BaseListProps extends React.OlHTMLAttributes<HTMLElement> {
className?: never;
style?: never;
as: 'ol' | 'ul';
Expand Down

0 comments on commit 2970394

Please sign in to comment.