style: 标准化样式

This commit is contained in:
手瓜一十雪
2024-08-25 21:37:36 +08:00
parent 72d256e61a
commit 29f79fcc6c
7 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
import { forceFetchClientKeyRetType } from './common';
import { ForceFetchClientKeyRetType } from './common';
export interface NodeIKernelTicketService {
@@ -6,7 +6,7 @@ export interface NodeIKernelTicketService {
removeKernelTicketListener(listenerId: unknown): void;
forceFetchClientKey(arg: string): Promise<forceFetchClientKeyRetType>;
forceFetchClientKey(arg: string): Promise<ForceFetchClientKeyRetType>;
isNull(): boolean;
}

View File

@@ -8,7 +8,7 @@ export interface GeneralCallResult {
errMsg: string
}
export interface forceFetchClientKeyRetType extends GeneralCallResult {
export interface ForceFetchClientKeyRetType extends GeneralCallResult {
url: string;
keyIndex: string;
clientKey: string;