Files
codeql/javascript/ql/lib/semmle/javascript/ViewComponentInput.qll
2025-01-22 10:45:46 +01:00

13 lines
344 B
Plaintext

/**
* Provides a classes and predicates for contributing to the `view-component-input` threat model.
*/
private import javascript
/**
* An input to a view component, such as React props.
*/
abstract class ViewComponentInput extends ThreatModelSource::Range {
final override string getThreatModel() { result = "view-component-input" }
}