Represents a project settings validation result with no issues.
Example
constUi = awaitimport('LensStudio:Ui');
// ProjectSettings.NoIssue represents a clean project configuration state. // Return it from a ProjectSettingsPlugin to indicate no problems found. constnoIssue = newUi.ProjectSettings.NoIssue(); console.log('NoIssue created, type:', typeofnoIssue);
// Typically passed in an array to setIssues(): // this.setIssues([noIssue]);
Represents a project settings validation result with no issues.
Example