Variable applicationsConst

applications: {
    [iterator]() => Generator<Application, void, unknown>;
} = ...

Can be used as an iterator to retrieve the list of installed applications.

Type declaration

Example

for (const app of Switch.applications) {
console.log(app.name);
}

Generated using TypeDoc