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

interface ExportSpecifier {
    exported: Identifier | Literal;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    local: Identifier | Literal;
    range?: [number, number];
    trailingComments?: Comment[];
    type: "ExportSpecifier";
}

Hierarchy (View Summary)

Properties

exported: Identifier | Literal
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
trailingComments?: Comment[]
type: "ExportSpecifier"