Construct a type with the properties of T except for those in type K.

interface ActivitiesOptions {
    name: string;
    state?: string;
    type?: ActivityType;
    url?: string;
}

Hierarchy (View Summary)

Properties

Properties

name: string
state?: string
url?: string