fix. gnb 작업 1차

This commit is contained in:
clkim
2025-10-02 17:34:41 +09:00
parent a70b3c8795
commit 1da6227c46
18 changed files with 413 additions and 448 deletions

10
layers/types/Common.ts Normal file
View File

@@ -0,0 +1,10 @@
import type { HTMLAttributes } from 'vue'
import type { StoveJsService } from '@/layers/types/Stove'
export type ClassType = HTMLAttributes['class']
declare global {
interface Window {
stoveJsService?: StoveJsService
}
}

View File

@@ -1,3 +1,6 @@
/**
* Stove 81 Plug
*/
export interface IdentityInfo {
app_id: string
log_source_type: string
@@ -36,3 +39,10 @@ export interface ActionInfo {
action_param: ActionParam
marketing_info?: MarketingInfo
}
/**
* Stove JS Service
*/
export interface StoveJsService {
launcher?: any
}