atma-utils
Advanced tools
Comparing version 0.1.34 to 0.1.35
{ | ||
"name": "atma-utils", | ||
"description": "Helpers", | ||
"version": "0.1.34", | ||
"version": "0.1.35", | ||
"author": "Alexander Kit <alex.kit@atmajs.com>", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -24,8 +24,8 @@ export function is_Function(mix: any): boolean | ||
export class class_EventEmitter { | ||
on: (event: string, cb: Function) => this | ||
once: (event: string, cb: Function) => this | ||
off: (event: string, cb?: Function) => this | ||
emit: (event: string, ...args: any[]) => this | ||
trigger: (event: string, ...args: any[]) => this | ||
pipe: (eventName: string) => (...args) => void | ||
on (event: string, cb: Function): this | ||
once (event: string, cb: Function): this | ||
off (event: string, cb?: Function): this | ||
emit (event: string, ...args: any[]): this | ||
trigger (event: string, ...args: any[]): this | ||
pipe (eventName: string): (...args) => void | ||
} | ||
@@ -32,0 +32,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
177266