diff --git a/src/Reference.ts b/src/Reference.ts index c57b472a9..0f81d81f9 100644 --- a/src/Reference.ts +++ b/src/Reference.ts @@ -10,8 +10,8 @@ export type ReferenceOptions = { map?: (value: unknown) => TValue; }; -export function create(key: string, options?: ReferenceOptions) { - return new Reference(key, options); +export function create(key: string, options?: ReferenceOptions) { + return new Reference(key, options); } export default class Reference {