blob: 79b288615885cfe11d4943634f82a5957c25ee4a (
plain)
1
2
3
4
5
6
7
|
import type { Serializer } from "../flatmatter.ts";
export default class ToObject implements Serializer<Record<string, unknown>> {
serialize(config: Record<string, unknown>): Record<string, unknown> {
return config;
}
}
|