@fradev/ng-snotify
Version:
Angular 2+ notifications center
13 lines (12 loc) • 390 B
TypeScript
import { SnotifyType } from '../types/snotify.type';
/**
* Transform arguments to Snotify object
* @param target
* @param {SnotifyType} propertyKey
* @param {PropertyDescriptor} descriptor
* @returns {Snotify}
* @constructor
*/
export declare function TransformArgument(target: any, propertyKey: SnotifyType, descriptor: PropertyDescriptor): {
value: (...args: any[]) => any;
};