enumSourceUris static method

Map<String, String> enumSourceUris()

Returns a map of enum names to their canonical source URIs.

Used for deduplication when the same enum is exported through multiple barrels (e.g., tom_core_kernel and tom_core_server).

Implementation

static Map<String, String> enumSourceUris() {
  return {
    'TableAlignment': 'package:dcli_terminal/src/format.dart',
    'TerminalClearMode': 'package:dcli_terminal/src/terminal.dart',
    'FetchMethod': 'package:dcli/src/functions/fetch.dart',
    'FetchStatus': 'package:dcli/src/functions/fetch.dart',
    'Interval': 'package:dcli/src/functions/sleep.dart',
    'SortDirection': 'package:dcli/src/util/file_sort.dart',
  };
}