{"version":3,"file":"memory-storage.cjs","names":["store: AuthenticationData | null"],"sources":["../../../src/auth/utils/memory-storage.ts"],"sourcesContent":["import type { AuthenticationData, AuthenticationStorage } from '../types.js';\n\n/**\n * Simple memory storage implementation\n *\n * @returns AuthenticationStorage\n */\nexport const memoryStorage = () => {\n\tlet store: AuthenticationData | null = null;\n\n\treturn {\n\t\tget: async () => store,\n\t\tset: async (value: AuthenticationData | null) => {\n\t\t\tstore = value;\n\t\t},\n\t} as AuthenticationStorage;\n};\n"],"mappings":"AAOA,MAAa,MAAsB,CAClC,IAAIA,EAAmC,KAEvC,MAAO,CACN,IAAK,SAAY,EACjB,IAAK,KAAO,IAAqC,CAChD,EAAQ,GAET"}