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