NeahNew/node_modules/next/dist/shared/lib/router/utils/omit.d.ts
2025-05-03 14:17:46 +02:00

4 lines
126 B
TypeScript

export declare function omit<T extends {
[key: string]: unknown;
}, K extends keyof T>(object: T, keys: K[]): Omit<T, K>;