첫 커밋

This commit is contained in:
focp212@naver.com
2025-09-05 15:36:48 +09:00
commit 05238b04c1
825 changed files with 176358 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
export enum AccountTabKeys {
UserManage = 'UserManage',
PasswordManage = 'PasswordManage',
};
export interface AccountTabProps {
activeTab: AccountTabKeys;
};
export enum AccountUserTabKeys {
LoginAuthInfo = 'LoginAuthInfo',
AccountAuth = 'AccountAuth',
};
export interface AccountUserTabProps {
activeTab: AccountUserTabKeys;
tid: string;
};
export interface AuthItem {
useYn?: boolean;
authName?: string;
tid?: string;
};
export interface UserManageAuthListProps {
authItems: Array<AuthItem>
};
export interface UserManageAuthItemProps extends AuthItem {
};
export interface UserLoginAuthInfoWrapProps {
tid: string;
};
export interface UserAccountAuthWrapProps {
tid: string;
};
export interface PermItem {
menuId?: string;
permName?: string;
};
export interface UserAccountAuthPermListProps {
tid: string;
permItems: Array<PermItem>;
};
export interface UserAccountAuthPermItemProps extends PermItem {
tid: string;
};