We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mixin does not allow the use of protected and private with property/method
protected
private
public
_
PuppetInterface
ProtectedMethods
Omit<Puppet, ProtectedMethods>
The text was updated successfully, but these errors were encountered:
change protected to jsdoc (#155)
5ca2fae
Init Mixins (#154)
9d4a8dd
* create PayloadCache class * init mixins * add mixin docs * code clean * change protected to jsdoc (#155) * add CacheMixin & WatchdogMin with PuppetSkelton * add CacheMixin & WatchdogMin with PuppetSkelton * clean * follow mixin design (#156) * Create PuppetError classes (#159) * split all code into mixins * fix memory * fix * fix memory * 0.49.4 * clean * 0.49.5 * rename PuppetError -> GError * rename PuppetError -> GError * 0.49.6 * clean code * 0.49.7
add PuppetInterface (#155)
5bbf372
Finally, we use a PuppetInterface to remove the protected methods.
Sorry, something went wrong.
add mixin protected properties tests (#155)
56ce088
No branches or pull requests
The Problem
Mixin does not allow the use of
protected
andprivate
with property/methodThe Solution
public
and a_
prefix?PuppetInterface
by defining aProtectedMethods
type to calculate fromOmit<Puppet, ProtectedMethods>
Links
The text was updated successfully, but these errors were encountered: