identityFunc.d.ts 101 B

1234
  1. /**
  2. * Returns the first argument it receives.
  3. */
  4. export declare function identityFunc<T>(x: T): T;