FindGeneratedFilesFunction typedef

FindGeneratedFilesFunction = List<String> Function(String projectDir, {List<String> sourceDirs})

Functional type for listing .zorphy.dart files recursively. Returns absolute paths of all matching files.

Implementation

typedef FindGeneratedFilesFunction = List<String> Function(
  String projectDir, {
  List<String> sourceDirs,
});