mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
// Type definitions for nslog 3.0
|
|
// Project: https://github.com/atom/node-nslog
|
|
// Definitions by: Daniel Perez Alvarez <https://github.com/unindented>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/**
|
|
* Outputs a message to the native console.
|
|
*/
|
|
type NSLog = (...args: any[]) => void;
|
|
|
|
declare var nslog: NSLog;
|
|
export = nslog;
|