listLocalizationGroups

Beta

listLocalizationGroups

Iterates over localization groups one group at a time.

for await (const group of framer.listLocalizationGroups()) {
  await exportGroup(group)
}

This pull-based API requests the next group only when the consumer asks for it, avoiding accumulation of the complete result in memory.

Returns