f6a0673082
CI Pipeline / test (20) (pull_request) Failing after 1m17s
CI Pipeline / test (18) (pull_request) Failing after 1m28s
CI Pipeline / e2e (chromium) (pull_request) Failing after 1m33s
CI Pipeline / e2e (firefox) (pull_request) Failing after 1m27s
CI Pipeline / e2e (webkit) (pull_request) Failing after 1m34s
CI Pipeline / visual-regression (pull_request) Failing after 2m9s
CI Pipeline / storybook (pull_request) Failing after 1m5s
CI Pipeline / performance (pull_request) Failing after 1m42s
CI Pipeline / lint (pull_request) Failing after 49s
CI Pipeline / build (pull_request) Failing after 1m29s
38 lines
661 B
TypeScript
38 lines
661 B
TypeScript
/**
|
|
* Shared type definitions for the CommunityRule application
|
|
*/
|
|
|
|
// Re-export types from other modules for convenience
|
|
export type {
|
|
BlogPost,
|
|
BlogStats,
|
|
} from "./content";
|
|
|
|
export type {
|
|
BlogPostFrontmatter,
|
|
ValidationResult,
|
|
} from "./validation";
|
|
|
|
export type {
|
|
Heading,
|
|
Link,
|
|
Image,
|
|
ProcessedMarkdown,
|
|
ProcessedFrontmatter,
|
|
} from "./mdx";
|
|
|
|
export type {
|
|
CacheStats,
|
|
} from "./cache";
|
|
|
|
// Additional shared types
|
|
export interface ComponentProps {
|
|
className?: string;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export interface PageProps {
|
|
params?: Record<string, string | string[]>;
|
|
searchParams?: Record<string, string | string[]>;
|
|
}
|