File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ export class SecretsManager implements ISecretsManager {
129
129
/**
130
130
* Detach the input previously attached with its namespace and ID.
131
131
*/
132
- detach ( token : symbol , namespace : string , id : string ) : void {
132
+ async detach ( token : symbol , namespace : string , id : string ) : Promise < void > {
133
133
Private . checkNamespace ( token , namespace ) ;
134
134
this . _detach ( Private . buildConnectorId ( namespace , id ) ) ;
135
135
}
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ export interface ISecretsManager {
76
76
/**
77
77
* Detach the input previously attached with its namespace and ID.
78
78
*/
79
- detach ( token : symbol , namespace : string , id : string ) : void ;
79
+ detach ( token : symbol , namespace : string , id : string ) : Promise < void > ;
80
80
/**
81
81
* Detach all attached input for a namespace.
82
82
*/
You can’t perform that action at this time.
0 commit comments