mirror of
https://github.com/langgenius/dify.git
synced 2026-04-16 02:16:57 +08:00
Co-authored-by: Brian Wang <BrianWang1990@users.noreply.github.com> Co-authored-by: test <test@testdeMac-mini.local> Co-authored-by: BrianWang1990 <512dabing99@163.com> Co-authored-by: Stephen Zhou <hi@hyoban.cc> Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com>
8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
type Noop = {
|
|
// eslint-disable-next-line ts/no-explicit-any
|
|
(...args: any[]): any
|
|
}
|
|
|
|
/** @see https://foxact.skk.moe/noop */
|
|
export const noop: Noop = () => { /* noop */ }
|