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