Last updated 3 years ago
Was this helpful?
Wrap.prototype.closing
The accessor gets the of the wrap by returning the property of the specified object.
public get closing(): Closing { return this.#closing; }
Closing
The return type is the generic type variable declared in the class.
The return value is of the wrap of a generic type variable .
// Example usage. import { Wrap } from '@angular-package/wrapper'; // Returns ] of type "]". new Wrap(`[`, `]`, 'quote').closing;
get
#closing
Wrap