bilibili-bangumi-component
Version:
展示 bilibili 与 Bangumi 追番列表的 WebComponent 组件
10 lines (9 loc) • 309 B
TypeScript
import type { FunctionalComponent } from '../stencil-public-runtime';
import type { ContainerState, ListItem } from '../shared/types';
interface ListProps {
loading: boolean;
list: ListItem[];
containerState: ContainerState;
}
export declare const List: FunctionalComponent<ListProps>;
export {};