mirror of
https://github.com/github/codeql.git
synced 2026-04-13 02:54:01 +02:00
13 lines
344 B
Plaintext
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" }
|
|
}
|