@apps-in-toss/native-modules 1.6.2 → 1.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -401,30 +401,6 @@ interface AdNetworkResponseInfo {
401
401
  adSourceInstanceName: string;
402
402
  adNetworkClassName: string | null;
403
403
  }
404
- /**
405
- * @public
406
- * @category 광고
407
- * @name InterstitialAd
408
- * @description 전면 광고의 ID와 응답 정보를 담고 있는 객체예요. 광고를 로드한 뒤, 관련 정보를 확인할 때 유용해요.
409
- * @property {string} adUnitId 광고 ID예요.
410
- * @property {ResponseInfo} responseInfo 광고 로드 응답 정보예요. 자세한 내용은 [ResponseInfo](/react-native/reference/native-modules/광고/ResponseInfo.html)를 참고하세요.
411
- */
412
- interface InterstitialAd {
413
- adUnitId: string;
414
- responseInfo: ResponseInfo;
415
- }
416
- /**
417
- * @public
418
- * @category 광고
419
- * @name RewardedAd
420
- * @description 보상형 광고의 ID와 응답 정보를 담고 있는 객체예요. 광고를 로드한 뒤, 관련 정보를 확인할 때 유용해요.
421
- * @property {string} adUnitId 광고 ID예요.
422
- * @property {ResponseInfo} responseInfo 광고 로드 응답 정보예요. 자세한 내용은 [ResponseInfo](/react-native/reference/native-modules/광고/ResponseInfo.html)를 참고하세요.
423
- */
424
- interface RewardedAd {
425
- adUnitId: string;
426
- responseInfo: ResponseInfo;
427
- }
428
404
  /**
429
405
  * @public
430
406
  * @category 광고
@@ -440,555 +416,6 @@ interface AdMobLoadResult {
440
416
  responseInfo: ResponseInfo;
441
417
  }
442
418
 
443
- interface LoadAdMobInterstitialAdOptions {
444
- /**
445
- * 광고 단위 ID
446
- */
447
- adUnitId: string;
448
- }
449
- /**
450
- * @public
451
- * @category 광고
452
- * @name LoadAdMobInterstitialAdEvent
453
- * @description 전면 광고를 불러오는 함수에서 발생하는 이벤트 타입이에요. `loaded` 이벤트가 발생하면 광고를 성공적으로 불러온 거예요. 이때 [InterstitialAd](/react-native/reference/native-modules/광고/InterstitialAd.html) 객체가 함께 반환돼요.
454
- */
455
- type LoadAdMobInterstitialAdEvent = AdMobFullScreenEvent | {
456
- type: 'loaded';
457
- data: InterstitialAd;
458
- };
459
- /**
460
- * @public
461
- * @category 광고
462
- * @name LoadAdMobInterstitialAdParams
463
- * @description 전면 광고를 불러오는 함수에 필요한 옵션 객체예요.
464
- */
465
- type LoadAdMobInterstitialAdParams = AdMobHandlerParams<LoadAdMobInterstitialAdOptions, LoadAdMobInterstitialAdEvent>;
466
- /**
467
- * @public
468
- * @category 광고
469
- * @name loadAdMobInterstitialAd
470
- * @deprecated 이 함수는 더 이상 사용되지 않습니다. 대신 {@link GoogleAdMob.loadAppsInTossAdMob}를 사용해주세요.
471
- *
472
- * @example
473
- * ### 버튼 눌러 불러온 광고 보여주기 (loadAppsInTossAdMob로 변경 예제)
474
- * ```tsx
475
- * import { GoogleAdMob } from '@apps-in-toss/framework';
476
- * import { useFocusEffect } from '@granite-js/native/@react-navigation/native';
477
- * import { useNavigation } from '@granite-js/react-native';
478
- * import { useCallback, useState } from 'react';
479
- * import { Button, Text, View } from 'react-native';
480
- *
481
- * const AD_GROUP_ID = '<AD_GROUP_ID>';
482
- *
483
- * export function GoogleAdmobExample() {
484
- * const [adLoadStatus, setAdLoadStatus] = useState<'not_loaded' | 'loaded' | 'failed'>('not_loaded');
485
- * const navigation = useNavigation();
486
- *
487
- * const loadAd = useCallback(() => {
488
- * if (GoogleAdMob.loadAppsInTossAdMob.isSupported() !== true) {
489
- * return;
490
- * }
491
-
492
- * const cleanup = GoogleAdMob.loadAppsInTossAdMob({
493
- * options: {
494
- * adGroupId: AD_GROUP_ID,
495
- * },
496
- * onEvent: (event) => {
497
- * switch (event.type) {
498
- * case 'loaded':
499
- * console.log('광고 로드 성공', event.data);
500
- * setAdLoadStatus('loaded');
501
- * break;
502
- * }
503
- * },
504
- * onError: (error) => {
505
- * console.error('광고 불러오기 실패', error);
506
- * },
507
- * });
508
- *
509
- * return cleanup;
510
- * }, [navigation]);
511
- *
512
- * const showAd = useCallback(() => {
513
- * if (GoogleAdMob.showAppsInTossAdMob.isSupported() !== true) {
514
- * return;
515
- * }
516
- *
517
- * GoogleAdMob.showAppsInTossAdMob({
518
- * options: {
519
- * adGroupId: AD_GROUP_ID,
520
- * },
521
- * onEvent: (event) => {
522
- * switch (event.type) {
523
- * case 'requested':
524
- * console.log('광고 보여주기 요청 완료');
525
- * break;
526
- *
527
- * case 'clicked':
528
- * console.log('광고 클릭');
529
- * break;
530
- *
531
- * case 'dismissed':
532
- * console.log('광고 닫힘');
533
- * navigation.navigate('/examples/google-admob-interstitial-ad-landing');
534
- * break;
535
- *
536
- * case 'failedToShow':
537
- * console.log('광고 보여주기 실패');
538
- * break;
539
- *
540
- * case 'impression':
541
- * console.log('광고 노출');
542
- * break;
543
- *
544
- * case 'userEarnedReward':
545
- * console.log('광고 보상 획득 unitType:', event.data.unitType);
546
- * console.log('광고 보상 획득 unitAmount:', event.data.unitAmount);
547
- * break;
548
- *
549
- * case 'show':
550
- * console.log('광고 컨텐츠 보여졌음');
551
- * break;
552
- * }
553
- * },
554
- * onError: (error) => {
555
- * console.error('광고 보여주기 실패', error);
556
- * },
557
- * });
558
- * }, []);
559
- *
560
- * useFocusEffect(loadAd);
561
- *
562
- * return (
563
- * <View>
564
- * <Text>
565
- * {adLoadStatus === 'not_loaded' && '광고 로드 하지 않음 '}
566
- * {adLoadStatus === 'loaded' && '광고 로드 완료'}
567
- * {adLoadStatus === 'failed' && '광고 로드 실패'}
568
- * </Text>
569
- *
570
- * <Button title="Show Ad" onPress={showAd} disabled={adLoadStatus !== 'loaded'} />
571
- * </View>
572
- * );
573
- * }
574
- * ```
575
- */
576
- declare function loadAdMobInterstitialAd(params: LoadAdMobInterstitialAdParams): () => void;
577
- declare namespace loadAdMobInterstitialAd {
578
- var isSupported: () => boolean;
579
- }
580
- interface ShowAdMobInterstitialAdOptions {
581
- /**
582
- * 광고 단위 ID
583
- */
584
- adUnitId: string;
585
- }
586
- /**
587
- * @public
588
- * @category 광고
589
- * @name ShowAdMobInterstitialAdEvent
590
- * @description 전면 광고를 보여주는 함수에서 발생하는 이벤트 타입이에요. `requested` 이벤트가 발생하면 광고 노출 요청이 Google AdMob에 성공적으로 전달된 거예요.
591
- */
592
- type ShowAdMobInterstitialAdEvent = {
593
- type: 'requested';
594
- };
595
- /**
596
- * @public
597
- * @category 광고
598
- * @name ShowAdMobInterstitialAdParams
599
- * @description 불러온 전면 광고를 보여주는 함수에 필요한 옵션 객체예요.
600
- */
601
- type ShowAdMobInterstitialAdParams = AdMobHandlerParams<ShowAdMobInterstitialAdOptions, ShowAdMobInterstitialAdEvent>;
602
- /**
603
- * @public
604
- * @category 광고
605
- * @name showAdMobInterstitialAd
606
- * @deprecated 이 함수는 더 이상 사용되지 않습니다. 대신 {@link GoogleAdMob.showAppsInTossAdMob}를 사용해주세요.
607
- *
608
- * @example
609
- * ### 버튼 눌러 불러온 광고 보여주기 (showAppsInTossAdMob로 변경 예제)
610
- * ```tsx
611
- * import { GoogleAdMob } from '@apps-in-toss/framework';
612
- * import { useFocusEffect } from '@granite-js/native/@react-navigation/native';
613
- * import { useNavigation } from '@granite-js/react-native';
614
- * import { useCallback, useState } from 'react';
615
- * import { Button, Text, View } from 'react-native';
616
- *
617
- * const AD_GROUP_ID = '<AD_GROUP_ID>';
618
- *
619
- * export function GoogleAdmobExample() {
620
- * const [adLoadStatus, setAdLoadStatus] = useState<'not_loaded' | 'loaded' | 'failed'>('not_loaded');
621
- * const navigation = useNavigation();
622
- *
623
- * const loadAd = useCallback(() => {
624
- * if (GoogleAdMob.loadAppsInTossAdMob.isSupported() !== true) {
625
- * return;
626
- * }
627
-
628
- * const cleanup = GoogleAdMob.loadAppsInTossAdMob({
629
- * options: {
630
- * adGroupId: AD_GROUP_ID,
631
- * },
632
- * onEvent: (event) => {
633
- * switch (event.type) {
634
- * case 'loaded':
635
- * console.log('광고 로드 성공', event.data);
636
- * setAdLoadStatus('loaded');
637
- * break;
638
- * }
639
- * },
640
- * onError: (error) => {
641
- * console.error('광고 불러오기 실패', error);
642
- * },
643
- * });
644
- *
645
- * return cleanup;
646
- * }, [navigation]);
647
- *
648
- * const showAd = useCallback(() => {
649
- * if (GoogleAdMob.showAppsInTossAdMob.isSupported() !== true) {
650
- * return;
651
- * }
652
- *
653
- * GoogleAdMob.showAppsInTossAdMob({
654
- * options: {
655
- * adGroupId: AD_GROUP_ID,
656
- * },
657
- * onEvent: (event) => {
658
- * switch (event.type) {
659
- * case 'requested':
660
- * console.log('광고 보여주기 요청 완료');
661
- * break;
662
- *
663
- * case 'clicked':
664
- * console.log('광고 클릭');
665
- * break;
666
- *
667
- * case 'dismissed':
668
- * console.log('광고 닫힘');
669
- * navigation.navigate('/examples/google-admob-interstitial-ad-landing');
670
- * break;
671
- *
672
- * case 'failedToShow':
673
- * console.log('광고 보여주기 실패');
674
- * break;
675
- *
676
- * case 'impression':
677
- * console.log('광고 노출');
678
- * break;
679
- *
680
- * case 'userEarnedReward':
681
- * console.log('광고 보상 획득 unitType:', event.data.unitType);
682
- * console.log('광고 보상 획득 unitAmount:', event.data.unitAmount);
683
- * break;
684
- *
685
- * case 'show':
686
- * console.log('광고 컨텐츠 보여졌음');
687
- * break;
688
- * }
689
- * },
690
- * onError: (error) => {
691
- * console.error('광고 보여주기 실패', error);
692
- * },
693
- * });
694
- * }, []);
695
- *
696
- * useFocusEffect(loadAd);
697
- *
698
- * return (
699
- * <View>
700
- * <Text>
701
- * {adLoadStatus === 'not_loaded' && '광고 로드 하지 않음 '}
702
- * {adLoadStatus === 'loaded' && '광고 로드 완료'}
703
- * {adLoadStatus === 'failed' && '광고 로드 실패'}
704
- * </Text>
705
- *
706
- * <Button title="Show Ad" onPress={showAd} disabled={adLoadStatus !== 'loaded'} />
707
- * </View>
708
- * );
709
- * }
710
- * ```
711
- */
712
- declare function showAdMobInterstitialAd(params: ShowAdMobInterstitialAdParams): () => void;
713
- declare namespace showAdMobInterstitialAd {
714
- var isSupported: () => boolean;
715
- }
716
- interface LoadAdMobRewardedAdOptions {
717
- /**
718
- * 광고 단위 ID
719
- */
720
- adUnitId: string;
721
- }
722
- /**
723
- * @public
724
- * @category 광고
725
- * @name LoadAdMobRewardedAdEvent
726
- * @description 보상형 광고를 불러오는 함수에서 발생하는 이벤트 타입이에요. `loaded` 이벤트가 발생하면 광고를 성공적으로 불러온 거예요. 이때 [RewardedAd](/react-native/reference/native-modules/광고/RewardedAd.html) 객체가 함께 반환돼요. `userEarnedReward` 이벤트는 사용자가 광고를 끝까지 시청해, 보상 조건을 충족했을 때 발생해요.
727
- */
728
- type LoadAdMobRewardedAdEvent = AdMobFullScreenEvent | {
729
- type: 'loaded';
730
- data: RewardedAd;
731
- } | {
732
- type: 'userEarnedReward';
733
- };
734
- /**
735
- * @public
736
- * @category 광고
737
- * @name LoadAdMobRewardedAdParams
738
- * @description 보상형 광고를 불러오는 함수에 필요한 옵션 객체예요.
739
- */
740
- type LoadAdMobRewardedAdParams = AdMobHandlerParams<LoadAdMobRewardedAdOptions, LoadAdMobRewardedAdEvent>;
741
- /**
742
- * @public
743
- * @category 광고
744
- * @name loadAdMobRewardedAd
745
- * @deprecated 이 함수는 더 이상 사용되지 않습니다. 대신 {@link GoogleAdMob.loadAppsInTossAdMob}를 사용해주세요.
746
- *
747
- * @example
748
- * ### 버튼 눌러 불러온 광고 보여주기 (loadAppsInTossAdMob로 변경 예제)
749
- * ```tsx
750
- * import { GoogleAdMob } from '@apps-in-toss/framework';
751
- * import { useFocusEffect } from '@react-native-bedrock/native/@react-navigation/native';
752
- * import { useCallback, useState } from 'react';
753
- * import { Button, Text, View } from 'react-native';
754
- * import { useNavigation } from 'react-native-bedrock';
755
- *
756
- * const AD_GROUP_ID = '<AD_GROUP_ID>';
757
- *
758
- * export function GoogleAdmobExample() {
759
- * const [adLoadStatus, setAdLoadStatus] = useState<'not_loaded' | 'loaded' | 'failed'>('not_loaded');
760
- * const navigation = useNavigation();
761
- *
762
- * const loadAd = useCallback(() => {
763
- * if (GoogleAdMob.loadAppsInTossAdMob.isSupported() !== true) {
764
- * return;
765
- * }
766
-
767
- * const cleanup = GoogleAdMob.loadAppsInTossAdMob({
768
- * options: {
769
- * adGroupId: AD_GROUP_ID,
770
- * },
771
- * onEvent: (event) => {
772
- * switch (event.type) {
773
- * case 'loaded':
774
- * console.log('광고 로드 성공', event.data);
775
- * setAdLoadStatus('loaded');
776
- * break;
777
- * }
778
- * },
779
- * onError: (error) => {
780
- * console.error('광고 불러오기 실패', error);
781
- * },
782
- * });
783
- *
784
- * return cleanup;
785
- * }, [navigation]);
786
- *
787
- * const showAd = useCallback(() => {
788
- * if (GoogleAdMob.showAppsInTossAdMob.isSupported() !== true) {
789
- * return;
790
- * }
791
- *
792
- * GoogleAdMob.showAppsInTossAdMob({
793
- * options: {
794
- * adGroupId: AD_GROUP_ID,
795
- * },
796
- * onEvent: (event) => {
797
- * switch (event.type) {
798
- * case 'requested':
799
- * console.log('광고 보여주기 요청 완료');
800
- * break;
801
- *
802
- * case 'clicked':
803
- * console.log('광고 클릭');
804
- * break;
805
- *
806
- * case 'dismissed':
807
- * console.log('광고 닫힘');
808
- * navigation.navigate('/examples/google-admob-interstitial-ad-landing');
809
- * break;
810
- *
811
- * case 'failedToShow':
812
- * console.log('광고 보여주기 실패');
813
- * break;
814
- *
815
- * case 'impression':
816
- * console.log('광고 노출');
817
- * break;
818
- *
819
- * case 'userEarnedReward':
820
- * console.log('광고 보상 획득 unitType:', event.data.unitType);
821
- * console.log('광고 보상 획득 unitAmount:', event.data.unitAmount);
822
- * break;
823
- *
824
- * case 'show':
825
- * console.log('광고 컨텐츠 보여졌음');
826
- * break;
827
- * }
828
- * },
829
- * onError: (error) => {
830
- * console.error('광고 보여주기 실패', error);
831
- * },
832
- * });
833
- * }, []);
834
- *
835
- * useFocusEffect(loadAd);
836
- *
837
- * return (
838
- * <View>
839
- * <Text>
840
- * {adLoadStatus === 'not_loaded' && '광고 로드 하지 않음 '}
841
- * {adLoadStatus === 'loaded' && '광고 로드 완료'}
842
- * {adLoadStatus === 'failed' && '광고 로드 실패'}
843
- * </Text>
844
- *
845
- * <Button title="Show Ad" onPress={showAd} disabled={adLoadStatus !== 'loaded'} />
846
- * </View>
847
- * );
848
- * }
849
- * ```
850
- */
851
- declare function loadAdMobRewardedAd(params: LoadAdMobRewardedAdParams): () => void;
852
- declare namespace loadAdMobRewardedAd {
853
- var isSupported: () => boolean;
854
- }
855
- interface ShowAdMobRewardedAdOptions {
856
- /**
857
- * 광고 단위 ID
858
- */
859
- adUnitId: string;
860
- }
861
- /**
862
- * @public
863
- * @category 광고
864
- * @name ShowAdMobRewardedAdEvent
865
- * @description 보상형 광고를 보여주는 함수에서 발생하는 이벤트 타입이에요. `requested` 이벤트가 발생하면 광고 노출 요청이 Google AdMob에 성공적으로 전달된 거예요.
866
- */
867
- type ShowAdMobRewardedAdEvent = {
868
- type: 'requested';
869
- };
870
- /**
871
- * @public
872
- * @category 광고
873
- * @name ShowAdMobRewardedAdParams
874
- * @description 불러온 보상형 광고를 보여주는 함수에 필요한 옵션 객체예요.
875
- */
876
- type ShowAdMobRewardedAdParams = AdMobHandlerParams<ShowAdMobRewardedAdOptions, ShowAdMobRewardedAdEvent>;
877
- /**
878
- * @public
879
- * @category 광고
880
- * @name showAdMobRewardedAd
881
- * @deprecated 이 함수는 더 이상 사용되지 않습니다. 대신 {@link GoogleAdMob.showAppsInTossAdMob}를 사용해주세요.
882
- *
883
- * @example
884
- * ### 버튼 눌러 불러온 광고 보여주기 (showAppsInTossAdMob로 변경 예제)
885
- * ```tsx
886
- * import { GoogleAdMob } from '@apps-in-toss/framework';
887
- * import { useFocusEffect } from '@react-native-bedrock/native/@react-navigation/native';
888
- * import { useCallback, useState } from 'react';
889
- * import { Button, Text, View } from 'react-native';
890
- * import { useNavigation } from 'react-native-bedrock';
891
- *
892
- * const AD_GROUP_ID = '<AD_GROUP_ID>';
893
- *
894
- * export function GoogleAdmobExample() {
895
- * const [adLoadStatus, setAdLoadStatus] = useState<'not_loaded' | 'loaded' | 'failed'>('not_loaded');
896
- * const navigation = useNavigation();
897
- *
898
- * const loadAd = useCallback(() => {
899
- * if (GoogleAdMob.loadAppsInTossAdMob.isSupported() !== true) {
900
- * return;
901
- * }
902
-
903
- * const cleanup = GoogleAdMob.loadAppsInTossAdMob({
904
- * options: {
905
- * adGroupId: AD_GROUP_ID,
906
- * },
907
- * onEvent: (event) => {
908
- * switch (event.type) {
909
- * case 'loaded':
910
- * console.log('광고 로드 성공', event.data);
911
- * setAdLoadStatus('loaded');
912
- * break;
913
- * }
914
- * },
915
- * onError: (error) => {
916
- * console.error('광고 불러오기 실패', error);
917
- * },
918
- * });
919
- *
920
- * return cleanup;
921
- * }, [navigation]);
922
- *
923
- * const showAd = useCallback(() => {
924
- * if (GoogleAdMob.showAppsInTossAdMob.isSupported() !== true) {
925
- * return;
926
- * }
927
- *
928
- * GoogleAdMob.showAppsInTossAdMob({
929
- * options: {
930
- * adGroupId: AD_GROUP_ID,
931
- * },
932
- * onEvent: (event) => {
933
- * switch (event.type) {
934
- * case 'requested':
935
- * console.log('광고 보여주기 요청 완료');
936
- * break;
937
- *
938
- * case 'clicked':
939
- * console.log('광고 클릭');
940
- * break;
941
- *
942
- * case 'dismissed':
943
- * console.log('광고 닫힘');
944
- * navigation.navigate('/examples/google-admob-interstitial-ad-landing');
945
- * break;
946
- *
947
- * case 'failedToShow':
948
- * console.log('광고 보여주기 실패');
949
- * break;
950
- *
951
- * case 'impression':
952
- * console.log('광고 노출');
953
- * break;
954
- *
955
- * case 'userEarnedReward':
956
- * console.log('광고 보상 획득 unitType:', event.data.unitType);
957
- * console.log('광고 보상 획득 unitAmount:', event.data.unitAmount);
958
- * break;
959
- *
960
- * case 'show':
961
- * console.log('광고 컨텐츠 보여졌음');
962
- * break;
963
- * }
964
- * },
965
- * onError: (error) => {
966
- * console.error('광고 보여주기 실패', error);
967
- * },
968
- * });
969
- * }, []);
970
- *
971
- * useFocusEffect(loadAd);
972
- *
973
- * return (
974
- * <View>
975
- * <Text>
976
- * {adLoadStatus === 'not_loaded' && '광고 로드 하지 않음 '}
977
- * {adLoadStatus === 'loaded' && '광고 로드 완료'}
978
- * {adLoadStatus === 'failed' && '광고 로드 실패'}
979
- * </Text>
980
- *
981
- * <Button title="Show Ad" onPress={showAd} disabled={adLoadStatus !== 'loaded'} />
982
- * </View>
983
- * );
984
- * }
985
- * ```
986
- */
987
- declare function showAdMobRewardedAd(params: ShowAdMobRewardedAdParams): () => void;
988
- declare namespace showAdMobRewardedAd {
989
- var isSupported: () => boolean;
990
- }
991
-
992
419
  interface LoadAdMobOptions {
993
420
  /**
994
421
  * 광고 그룹 단위 ID
@@ -3201,18 +2628,10 @@ declare const TossPay: {
3201
2628
  * @category 광고
3202
2629
  * @name GoogleAdMob
3203
2630
  * @description Google AdMob 광고 관련 함수를 모아둔 객체예요.
3204
- * @property {typeof loadAdMobInterstitialAd} [loadAdMobInterstitialAd] 전면 광고를 로드하는 함수예요. 자세한 내용은 [loadAdMobInterstitialAd](/react-native/reference/native-modules/광고/loadAdMobInterstitialAd.html)를 참고하세요.
3205
- * @property {typeof showAdMobInterstitialAd} [showAdMobInterstitialAd] 로드한 전면 광고를 보여주는 함수예요. 자세한 내용은 [showAdMobInterstitialAd](/react-native/reference/native-modules/광고/showAdMobInterstitialAd.html)를 참고하세요.
3206
- * @property {typeof loadAdMobRewardedAd} [loadAdMobRewardedAd] 보상형 광고를 로드하는 함수예요. 자세한 내용은 [loadAdMobRewardedAd](/react-native/reference/native-modules/광고/loadAdMobRewardedAd.html)를 참고하세요.
3207
- * @property {typeof showAdMobRewardedAd} [showAdMobRewardedAd] 로드한 보상형 광고를 보여주는 함수예요. 자세한 내용은 [showAdMobRewardedAd](/react-native/reference/native-modules/광고/showAdMobRewardedAd.html)를 참고하세요.
3208
2631
  * @property {typeof loadAppsInTossAdMob} [loadAppsInTossAdMob] 광고를 로드하는 함수예요. 자세한 내용은 [loadAppsInTossAdMob](/react-native/reference/native-modules/광고/loadAppsInTossAdMob.html)를 참고하세요.
3209
2632
  * @property {typeof showAppsInTossAdMob} [showAppsInTossAdMob] 로드한 광고를 보여주는 함수예요. 자세한 내용은 [showAppsInTossAdMob](/react-native/reference/native-modules/광고/showAppsInTossAdMob.html)를 참고하세요.
3210
2633
  */
3211
2634
  declare const GoogleAdMob: {
3212
- loadAdMobInterstitialAd: typeof loadAdMobInterstitialAd;
3213
- showAdMobInterstitialAd: typeof showAdMobInterstitialAd;
3214
- loadAdMobRewardedAd: typeof loadAdMobRewardedAd;
3215
- showAdMobRewardedAd: typeof showAdMobRewardedAd;
3216
2635
  loadAppsInTossAdMob: typeof loadAppsInTossAdMob;
3217
2636
  showAppsInTossAdMob: typeof showAppsInTossAdMob;
3218
2637
  };
@@ -3682,4 +3101,4 @@ declare const INTERNAL__module: {
3682
3101
  tossCoreEventLog: typeof tossCoreEventLog;
3683
3102
  };
3684
3103
 
3685
- export { AppsInTossModule, type AppsInTossSignTossCertParams, BedrockCoreModule, BedrockModule, type CheckoutPaymentOptions, type CheckoutPaymentResult, type CompletedOrRefundedOrdersResult, type ContactsViralParams, type EventLogParams, type GameCenterGameProfileResponse, type GetUserKeyForGameErrorResponse, type GetUserKeyForGameResponse, type GetUserKeyForGameSuccessResponse, GoogleAdMob, type GrantPromotionRewardForGameErrorResponse, type GrantPromotionRewardForGameErrorResult, type GrantPromotionRewardForGameResponse, type GrantPromotionRewardForGameSuccessResponse, type HapticFeedbackType, IAP, AppsInTossModuleInstance as INTERNAL__AppsInTossModule, INTERNAL__appBridgeHandler, INTERNAL__module, type IapCreateOneTimePurchaseOrderOptions, type IapCreateOneTimePurchaseOrderResult, type IapProductListItem, type LoadAdMobEvent, type LoadAdMobInterstitialAdEvent, type LoadAdMobInterstitialAdOptions, type LoadAdMobOptions, type LoadAdMobParams, type LoadAdMobRewardedAdEvent, type LoadAdMobRewardedAdOptions, type NetworkStatus, type Primitive, type SaveBase64DataParams, type ShowAdMobEvent, type ShowAdMobInterstitialAdEvent, type ShowAdMobInterstitialAdOptions, type ShowAdMobOptions, type ShowAdMobParams, type ShowAdMobRewardedAdEvent, type ShowAdMobRewardedAdOptions, Storage, type SubmitGameCenterLeaderBoardScoreResponse, TossPay, type UpdateLocationEventEmitter, appLogin, appsInTossEvent, appsInTossSignTossCert, closeView, contactsViral, eventLog, fetchAlbumPhotos, fetchContacts, generateHapticFeedback, getClipboardText, getCurrentLocation, getDeviceId, getGameCenterGameProfile, getIsTossLoginIntegratedService, getLocale, getNetworkStatus, getOperationalEnvironment, getPlatformOS, getSchemeUri, getTossAppVersion, getTossShareLink, getUserKeyForGame, grantPromotionRewardForGame, iapCreateOneTimePurchaseOrder, isMinVersionSupported, onVisibilityChangedByTransparentServiceWeb, openCamera, openGameCenterLeaderboard, openURL, processProductGrant, requestOneTimePurchase, saveBase64Data, setClipboardText, setDeviceOrientation, setIosSwipeGestureEnabled, setScreenAwakeMode, setSecureScreen, share, startUpdateLocation, submitGameCenterLeaderBoardScore };
3104
+ export { AppsInTossModule, type AppsInTossSignTossCertParams, BedrockCoreModule, BedrockModule, type CheckoutPaymentOptions, type CheckoutPaymentResult, type CompletedOrRefundedOrdersResult, type ContactsViralParams, type EventLogParams, type GameCenterGameProfileResponse, type GetUserKeyForGameErrorResponse, type GetUserKeyForGameResponse, type GetUserKeyForGameSuccessResponse, GoogleAdMob, type GrantPromotionRewardForGameErrorResponse, type GrantPromotionRewardForGameErrorResult, type GrantPromotionRewardForGameResponse, type GrantPromotionRewardForGameSuccessResponse, type HapticFeedbackType, IAP, AppsInTossModuleInstance as INTERNAL__AppsInTossModule, INTERNAL__appBridgeHandler, INTERNAL__module, type IapCreateOneTimePurchaseOrderOptions, type IapCreateOneTimePurchaseOrderResult, type IapProductListItem, type LoadAdMobEvent, type LoadAdMobOptions, type LoadAdMobParams, type NetworkStatus, type Primitive, type SaveBase64DataParams, type ShowAdMobEvent, type ShowAdMobOptions, type ShowAdMobParams, Storage, type SubmitGameCenterLeaderBoardScoreResponse, TossPay, type UpdateLocationEventEmitter, appLogin, appsInTossEvent, appsInTossSignTossCert, closeView, contactsViral, eventLog, fetchAlbumPhotos, fetchContacts, generateHapticFeedback, getClipboardText, getCurrentLocation, getDeviceId, getGameCenterGameProfile, getIsTossLoginIntegratedService, getLocale, getNetworkStatus, getOperationalEnvironment, getPlatformOS, getSchemeUri, getTossAppVersion, getTossShareLink, getUserKeyForGame, grantPromotionRewardForGame, iapCreateOneTimePurchaseOrder, isMinVersionSupported, onVisibilityChangedByTransparentServiceWeb, openCamera, openGameCenterLeaderboard, openURL, processProductGrant, requestOneTimePurchase, saveBase64Data, setClipboardText, setDeviceOrientation, setIosSwipeGestureEnabled, setScreenAwakeMode, setSecureScreen, share, startUpdateLocation, submitGameCenterLeaderBoardScore };