Files
9308287fea fix: copy button not working on API Server and API Key pages (#34515)
Co-authored-by: Brian Wang <[email protected]>
Co-authored-by: test <[email protected]>
Co-authored-by: BrianWang1990 <[email protected]>
Co-authored-by: Stephen Zhou <[email protected]>
Co-authored-by: Stephen Zhou <[email protected]>
2026-04-09 02:49:40 +00:00

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 */ }