8 lines
348 B
TypeScript
8 lines
348 B
TypeScript
import { WithdrawService } from '../service/withdraw.service';
|
|
import { ApplyWithdrawDto } from '../dto/withdraw.dto';
|
|
export declare class WithdrawController {
|
|
private readonly withdrawService;
|
|
constructor(withdrawService: WithdrawService);
|
|
apply(dto: ApplyWithdrawDto): Promise<import("src/app/common/api").ApiResponseVo<unknown>>;
|
|
}
|