Descripción
Strategy interface for Strategy pattern
File Template: ✅
Prefix
strategy:interface
Scopes
javascript
Snippet de código
class ${1:Strategy} {
execute() {
throw new Error('Method not implemented');
}
}
export default ${1:Strategy};
Strategy interface for Strategy pattern
strategy:interface
javascript
class ${1:Strategy} {
execute() {
throw new Error('Method not implemented');
}
}
export default ${1:Strategy};