UNPKG

casualos

Version:
16 lines 711 B
import type { StoredAux } from '@casual-simulation/aux-common'; import * as esbuild from 'esbuild'; /** * Minifies the given aux object. * @param aux The aux object to minify. * @param target The target or targets to minify for. */ export declare function minifyAux(aux: StoredAux, target?: string | string[]): Promise<StoredAux>; /** * Transforms the given aux object using the specified transform options. * @param aux The aux object to transform. * @param transformOptions The transform options to use. * @returns The transformed aux object. */ export declare function transformAux(aux: StoredAux, transformOptions: esbuild.TransformOptions): Promise<StoredAux>; //# sourceMappingURL=minify.d.ts.map