Commit eaca60aa authored by Rayron Victor's avatar Rayron Victor Committed by ι™ˆεΈ…

Fix lint export missing declarations

parent 8d25c2e6
......@@ -8,4 +8,7 @@ export interface IEllipsisProps {
fullWidthRecognition?: boolean;
}
export function getStrFullLength(str: string): number;
export function cutStrByFullLength(str: string, maxLength: number): number;
export default class Ellipsis extends React.Component<IEllipsisProps, any> {}
......@@ -20,4 +20,6 @@ export interface IPageHeaderProps {
hiddenBreadcrumb?:boolean;
}
export function getBreadcrumb(breadcrumbNameMap: Object, url: string): typeof Object;
export default class PageHeader extends React.Component<IPageHeaderProps, any> {}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment