(refactor) rename working to draft

This commit is contained in:
Kim Biesbjerg
2019-07-17 12:44:21 +02:00
parent ac551b1824
commit e41fc88d97
5 changed files with 12 additions and 12 deletions

View File

@@ -4,6 +4,6 @@ export interface PostProcessorInterface {
name: string;
process(working: TranslationCollection, extracted: TranslationCollection, existing: TranslationCollection): TranslationCollection;
process(draft: TranslationCollection, extracted: TranslationCollection, existing: TranslationCollection): TranslationCollection;
}