// For the purposes of js-http-client development, this is the minimal// required interface to support FormData in Nodejs an browsersdeclare module 'isomorphic-form-data' {
export defaultclassFormData{
append(key: string, value: File, filename?: string): void
}
}