repo.or.cz
/
4Free-FSE.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Feature Toggles[forgot version update]
[4Free-FSE.git]
/
src
/
feature-interface.ts
blob
d4cce3467c9f1d94d87844320e55d9fc09e18531
1
abstract class FeatureInterface{
2
abstract init():void;
3
abstract retrieveStates():void;
4
abstract storeStates(...items:any[]):void;
5
abstract activate():void;
6
abstract decideAction(node:any):void;
7
}