mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Mark deprecated functions as @deprecated.
This commit is contained in:
Vendored
+4
-4
@@ -537,19 +537,19 @@ declare module "express" {
|
||||
sendFile(path: string, options: any, fn: Errback): void;
|
||||
|
||||
/**
|
||||
* deprecated, use sendFile instead.
|
||||
* @deprecated Use sendFile instead.
|
||||
*/
|
||||
sendfile(path: string): void;
|
||||
/**
|
||||
* deprecated, use sendFile instead.
|
||||
* @deprecated Use sendFile instead.
|
||||
*/
|
||||
sendfile(path: string, options: any): void;
|
||||
/**
|
||||
* deprecated, use sendFile instead.
|
||||
* @deprecated Use sendFile instead.
|
||||
*/
|
||||
sendfile(path: string, fn: Errback): void;
|
||||
/**
|
||||
* deprecated, use sendFile instead.
|
||||
* @deprecated Use sendFile instead.
|
||||
*/
|
||||
sendfile(path: string, options: any, fn: Errback): void;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user