{"version":3,"file":"get-snaps.mjs","sourceRoot":"","sources":["../../../src/types/methods/get-snaps.ts"],"names":[],"mappings":"","sourcesContent":["import type { JsonRpcError } from '@metamask/utils';\n\nimport type { Snap, SnapId } from '../snap';\n\n/**\n * This method does not accept any parameters.\n */\nexport type GetSnapsParams = never;\n\n/**\n * A map of Snap IDs to either the Snap metadata or an error.\n */\nexport type GetSnapsResult = Record<SnapId, { error: JsonRpcError } | Snap>;\n"]}