• Returns a copy of the given object ({ ...obj }) with the given keys omitted.

    Type Parameters

    • T extends object

    • K extends string | number | symbol

    Parameters

    • obj: T

      Object to return with the keys omitted.

    • Rest ...keys: K[]

      Keys to omit from the returned object.

    Returns Omit<T, K>

    A copy of the given object with the given keys omitted.

Generated using TypeDoc