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

interface StaticBlock {
    body: Statement[];
    innerComments?: Comment[];
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    trailingComments?: Comment[];
    type: "StaticBlock";
}

Hierarchy (View Summary)

Properties

body: Statement[]
innerComments?: Comment[]
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
trailingComments?: Comment[]
type: "StaticBlock"