{"version":3,"file":"manage-accounts.cjs","sourceRoot":"","sources":["../../../src/types/methods/manage-accounts.ts"],"names":[],"mappings":"","sourcesContent":["import type { Json } from '@metamask/utils';\n\n/**\n * The account management request object.\n */\nexport type ManageAccountsParams = {\n  /**\n   * The account management method to call.\n   */\n  method: string;\n\n  /**\n   * The parameters to pass to the account management method.\n   */\n  params?: Json[] | Record<string, Json>;\n};\n\n/**\n * The result returned by the client. The structure of this result depends on\n * the account management method that was called.\n */\nexport type ManageAccountsResult = Json;\n"]}