Skip to content

Commit 4aab302

Browse files
committed
chore: lint ignore
1 parent 9e048a4 commit 4aab302

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/win32-def/src/lib/ffi.types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ export type FnDefFullParams = [FnDefRetType, FnDefCallParams] // def for ffi [re
3636
export type FuncDefListInner<T = DllFuncsType> = Map<(keyof T) & string, FnDefFullParams>
3737
// export type FuncDefList<T = DllFuncsType> = Record<(keyof T) & string, any[] | readonly any[]>
3838
export type FuncDefList<T = DllFuncsType> = {
39-
[K in keyof T as K extends `${string}_Async` ? never : `${K & string}`]: any[] | readonly any[]
39+
/** eslint-disable-next-line @typescript-eslint/no-unnecessary-template-expression */
40+
[K in keyof T as K extends `${string}_Async` ? never : K & string]: any[] | readonly any[]
4041
}
4142

4243

0 commit comments

Comments
 (0)