mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
5 lines
170 B
TypeScript
5 lines
170 B
TypeScript
type Func = (...args: unknown[]) => unknown;
|
|
|
|
declare function setFunctionName<T extends Func = Func>(fn: T, name: string, loose?: boolean): T;
|
|
|
|
export = setFunctionName; |