-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: blocking does not work incorrectly
- Loading branch information
1 parent
fc7b138
commit 8789884
Showing
4 changed files
with
20 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,10 @@ | ||
/* eslint-disable @typescript-eslint/no-unsafe-function-type */ | ||
/* eslint-disable @typescript-eslint/naming-convention */ | ||
type TPowerLinkMixin = { | ||
methods: Record<'contribution_link' | 'contribution_link_discuss' | 'doc_action_link' | 'doc_fulltitle' | 'onDynamicContentClick' | 'openQuickACLGroup' | 'to_duration' | 'url_encode' | 'user_doc' | string, Function> | ||
} | ||
|
||
export type TPowerLinkContent = { | ||
emits: string[] | ||
components: Record<string, { | ||
components: { | ||
FakeImg: { | ||
computed: Record<string, Function> | ||
props: Record<string, { type: Function }> | ||
render: Function | ||
__cssModules: { | ||
'$style': { | ||
'wiki-image': string, | ||
'wiki-image-wrapper': string, | ||
}, | ||
__scopeId: string | ||
}, | ||
NaverLoginImage: string, | ||
NaverPayImage: string, | ||
NaverPayPlusImage: string, | ||
NaverTalkTalkImage: string | ||
}, | ||
mixins: TPowerLinkMixin[], | ||
props: Record<string, Function>, | ||
render: Function, | ||
__cssModules: { | ||
'$style': Record<string, string> | ||
__scopeId: string | ||
} | ||
} | ||
}> | ||
props: Record<string, Function>, | ||
render: Function, | ||
__cssModules: { | ||
'$style': Record<string, string> | ||
}, | ||
__scopeId: string | ||
__v_skip: boolean | ||
} | ||
|
||
export type TPowerLinkObj = Record<string, TPowerLinkContent | null | string[] | string | number | number[]> | ||
|
||
export type TUnitPath = { | ||
export type TPowerLink = { | ||
destroyed: boolean, | ||
id: string, | ||
refreshTick: number, | ||
pFlag: boolean, | ||
size: number[], | ||
sizeMapping: Array<number[]> | ||
sizeMapping: Array<Array<number[]>> | ||
slot: null, | ||
unitPath: string | ||
} | ||
|
||
export type TPowerLinkMini = Record<string, number | boolean | Array<Record<string, string | boolean | string[] | number | Record<string, string>>>> | ||
} |