mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-05 15:42:18 +00:00
14 lines
366 B
TypeScript
14 lines
366 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
export interface ListGroupItemHeadingProps
|
|
extends React.HTMLAttributes<HTMLElement> {
|
|
[key: string]: any;
|
|
tag?: React.ElementType;
|
|
cssModule?: CSSModule;
|
|
}
|
|
|
|
declare class ListGroupItemHeading extends React.Component<
|
|
ListGroupItemHeadingProps
|
|
> {}
|
|
export default ListGroupItemHeading;
|