We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17836cf commit 79313b5Copy full SHA for 79313b5
1 file changed
src/components/schemas.ts
@@ -1,5 +1,4 @@
1
-import type { Declaration, SchemaFieldType, SchemaMetadataEntry } from "./Docs/api";
2
-import { declarationKey } from "./Docs/DeclarationsContext";
+import type { Declaration, SchemaFieldType, SchemaMetadataEntry } from "./Docs/api.ts";
3
4
export interface RawSchemaClass {
5
name: string;
@@ -68,7 +67,7 @@ export function parseSchemas(data: SchemasJson) {
68
67
const all: Declaration[] = [];
69
for (const arr of [classes, enums]) {
70
for (const d of arr) {
71
- const key = declarationKey(d.module, d.name);
+ const key = `${d.module}/${d.name}`;
72
if (!seen.has(key)) {
73
seen.add(key);
74
all.push(d);
0 commit comments