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