Last updated 3 years ago
Was this helpful?
Tag.wrapper
The public static accessor sets an instance of into the static private property .
public static set wrapper(wrapper: Wrapper<any, any>) { Wrapper.isWrapper(wrapper) && (this.defaultWrapper = wrapper); }
The public static accessor gets an instance of from the static private property .
public static get wrapper(): Wrapper<any, any> { return this.defaultWrapper; }
set
Wrapper
defaultWrapper
get