mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
5 lines
133 B
TypeScript
5 lines
133 B
TypeScript
export const withTaskName = <T extends (...args: any) => any>(
|
|
name: string,
|
|
fn: T
|
|
) => Object.assign(fn, { displayName: name })
|