Preparing search index...

    Represents a project settings validation result with no issues.

        const Ui = await import('LensStudio:Ui');

    // ProjectSettings.NoIssue represents a clean project configuration state.
    // Return it from a ProjectSettingsPlugin to indicate no problems found.
    const noIssue = new Ui.ProjectSettings.NoIssue();
    console.log('NoIssue created, type:', typeof noIssue);

    // Typically passed in an array to setIssues():
    // this.setIssues([noIssue]);
    Index

    Constructors

    Constructors

    • Constructs a NoIssue result indicating no project settings validation issues were found.

      Returns NoIssue