blob: e0c1827e8fd5e83ef7eb5091ad12afc8ed4ee846 [file] [log] [blame]
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:async';
import 'package:build/build.dart';
@deprecated
typedef OnDelete = void Function(AssetId id);
abstract class RunnerAssetWriter implements AssetWriter {
Future delete(AssetId id);
}