persona-community-5/.pnpm-store/v3/files/f1/1f0263ffe37af671576b007ccf616a7d1c97f7e6405d8421273fa24e5e922cd66ab8d14eec7dd6ecba6eb2d783d574f51880be5f9a6b872e973104f240bfd9
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

11 lines
469 B
Plaintext

import type { FromSchema } from 'json-schema-to-ts';
import type { Location } from 'react-router-dom';
import type { graphqlConfigSchema } from '../graphql-config-schema';
export type GraphQLConfigTypes = FromSchema<typeof graphqlConfigSchema> & {
markdown?: {
parser?: (md: string) => string;
highlight?: (code: string, lang: string, options?: Record<string, any>) => string;
};
onLocationChange?: (location: Partial<Location>) => void;
};