import { MiniAppModule } from '../../natives'; /** * @public * @category Constants * @name getGroupId * @description 앱인토스에서 제공하는 그룹 ID를 가져와요. * @returns {string} 그룹 ID * * @example * ```typescript * import { getGroupId } from '@apps-in-toss/native-modules'; * * const groupId = getGroupId(); * console.log('Group ID:', groupId); * ``` */ export function getGroupId(): string { return MiniAppModule.getConstants().groupId; }