diff --git a/source/index.ts b/source/index.ts index 634ac40..d8724d6 100644 --- a/source/index.ts +++ b/source/index.ts @@ -40,8 +40,8 @@ const checkValueType = (key: string, value: unknown): void => { } }; -const INTERNAL_KEY = '__internal__'; -const MIGRATION_KEY = `${INTERNAL_KEY}.migrations.version`; +export const INTERNAL_KEY = '__internal__'; +export const MIGRATION_KEY = `${INTERNAL_KEY}.migrations.version`; class Conf = Record> implements Iterable<[keyof T, T[keyof T]]> { readonly path: string;