以下のコードで`applyOperation`関数の`operation`引数に指定すべき型はどれですか? ```typescript function applyOperation(value: number, operation: ____): number { return operation(value); } ```