get closing()
The `get` accessor gets the closing of the wrap by returning the `#closing` property of the specified object.
Wrap.prototype.closing
Wrap.prototype.closingpublic get closing(): Closing {
return this.#closing;
}Return type
Closing
ClosingReturns
Example usage
// Example usage.
import { Wrap } from '@angular-package/wrapper';
// Returns ] of type "]".
new Wrap(`[`, `]`, 'quote').closing;Last updated