JavaScript Strategy Interface

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};