import { IMeasureOpts } from "@spinajs/log-common"; /** * Method decorator that times the wrapped method via {@link Perf.measure}. Name * defaults to `${ClassName}.${method}`. Works for sync and async methods ( the * facade awaits a returned thenable ). Uses the same legacy-decorator signature * as the rest of the framework ( `experimentalDecorators` ). */ export declare function Measure(name?: string, opts?: IMeasureOpts): (target: object, propertyKey: string | symbol, descriptor: PropertyDescriptor) => PropertyDescriptor; //# sourceMappingURL=measure.d.ts.map