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