@yaagoub/decorators
Version:
Angular decorators
9 lines (8 loc) • 330 B
TypeScript
import { YgbLogDestination } from '../types/ygb-types';
interface LogWarnOptions {
message?: string;
destination?: YgbLogDestination;
context?: boolean;
}
export declare function LogWarn(options?: LogWarnOptions): (target: object, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;
export {};