Variable profilesConst

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

Can be used as an iterator to retrieve the list of user profiles.

Type declaration

  • [iterator]:function

Example

for (const profile of Switch.profiles) {
console.log(profile.nickname);
}

Generated using TypeDoc