| 9 | } |
| 10 | |
| 11 | export interface SyncResult { |
| 12 | updated: Array<FileUpdate> |
| 13 | skipped: Array<string> |
| 14 | created: Array<string> |
| 15 | deleted: Array<string> |
| 16 | sourceFiles: Array<string> |
| 17 | errors: Array<string> |
| 18 | } |
| 19 | |
| 20 | export interface SyncOptions { |
| 21 | deleteRemoved?: boolean |
nothing calls this directly
no outgoing calls
no test coverage detected