import {Asset} from "./Asset";

export class AssetTransformer<A extends Asset<T>, T = any> {
    transform(source: A): Promise<A>
}
