* Convert fully to protobuf (was partially JSON) * Handle all floating promises * Remove stringified proto from trace logging It wasn't proving to be very useful.
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
import * as trash from "trash";
|
|
|
|
// tslint:disable completed-docs
|
|
|
|
export class TrashModuleProxy {
|
|
public async trash(path: string, options?: trash.Options): Promise<void> {
|
|
return trash(path, options);
|
|
}
|
|
}
|