import { ParameterDeclaration } from "https://deno.land/x/ts_morph@16.0.0/ts_morph.d.ts";
Methods
getParent(): NodeParentType<ts.ParameterDeclaration>
getParentOrThrow(): NonNullable<NodeParentType<ts.ParameterDeclaration>>
Gets the structure equivalent to this node.
isOptional(): boolean
Gets if it's optional.
isParameterProperty(): boolean
Gets if this is a property with a scope, readonly, or override keyword (found in class constructors).
isRestParameter(): boolean
Gets if it's a rest parameter.
remove(): void
Remove this parameter.
set(structure: Partial<ParameterDeclarationStructure>): this
Sets the node from a structure.
setHasQuestionToken(value: boolean): this
Sets if this node has a question token.
setInitializer(textOrWriterFunction: string | WriterFunction): this
Sets the initializer.
setIsRestParameter(value: boolean): this
Sets if it's a rest parameter.
setType(textOrWriterFunction: string | WriterFunction): this
Sets the type.