@logicflow/dumi-theme-simple
Version:
Simple website theme based on dumi2.
35 lines (34 loc) • 764 B
TypeScript
import React from 'react';
import { ExampleTopic, Example, Demo } from '../../types';
export interface AnnouncementProps {
message: React.ReactNode;
localStorageId: string;
bannerId: string;
style?: React.CSSProperties;
}
export interface GalleryPageContentProps {
/**
* 案例主题列表
*/
exampleTopics: ExampleTopic[];
}
export interface LeftMenuProps {
/**
* 案例主题列表
*/
exampleTopics: ExampleTopic[];
}
export interface ExampleWithTopic extends Example {
targetTopic: ExampleTopic;
}
export interface DemoCardProps {
demo: Demo;
topicId: string;
exampleId: string;
}
export interface LeftMenuProps {
/**
* 案例主题列表
*/
exampleTopics: ExampleTopic[];
}