Skip to content

Commit

Permalink
ci: up
Browse files Browse the repository at this point in the history
  • Loading branch information
waitingsong committed Jun 26, 2024
1 parent bf2e978 commit ecf7ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/win32-def/src/lib/ffi.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export type FnDefFullParams = [FnDefRetType, FnDefCallParams] // def for ffi [re
export type FuncDefListInner<T = DllFuncsType> = Map<(keyof T) & string, FnDefFullParams>
// export type FuncDefList<T = DllFuncsType> = Record<(keyof T) & string, any[] | readonly any[]>
export type FuncDefList<T = DllFuncsType> = {
[K in keyof T as K extends `${string}_Async` ? never : `${K & string}`]: any[] | readonly any[]>
[K in keyof T as K extends `${string}_Async` ? never : `${K & string}`]: any[] | readonly any[]
}


Expand Down

0 comments on commit ecf7ef6

Please sign in to comment.