summaryrefslogtreecommitdiff
path: root/src/serializers/to_object.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/serializers/to_object.ts')
-rw-r--r--src/serializers/to_object.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/serializers/to_object.ts b/src/serializers/to_object.ts
index 1b07144..a7161cc 100644
--- a/src/serializers/to_object.ts
+++ b/src/serializers/to_object.ts
@@ -1,7 +1,7 @@
-import type { Matter, Serializer } from "../flatmatter.ts";
+import type {Serializer} from "../flatmatter.ts";
export default class ToObject implements Serializer {
- serialize(parsedConfig: Matter): Matter {
+ serialize(parsedConfig: Record<string, unknown>): Record<string, unknown> {
return parsedConfig;
}
}