This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module "irc" { | |
import events = require('events'); | |
export interface Client extends events.EventEmitter { | |
send(command: string, ...args: string[]): void; | |
join(channel: string, callback: (arg: any)=>void): void; | |
part(channel: string, message: string): void; | |
part(channel: string, callback: (arg: any)=>void, message: string): void; | |
say(target: string, message: string): void; | |
ctcp(target: string, type: string, text: string): void; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module "irc" { | |
import events = require('events'); | |
export interface Client extends events.EventEmitter { | |
send(command: string, ...args: string[]): void; | |
join(channel: string, callback: (arg: any)=>void): void; | |
part(channel: string, message: string): void; | |
part(channel: string, callback: (arg: any)=>void, message: string): void; | |
say(target: string, message: string): void; | |
ctcp(target: string, type: string, text: string): void; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Insert this line above script imports --> | |
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script> | |
<!-- normal script imports etc --> | |
<script src="scripts/jquery.min.js"></script> | |
<script src="scripts/vendor.js"></script> | |
<!-- Insert this line after script imports --> | |
<script>if (window.module) module = window.module;</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Debug Main Process", | |
"type": "node", | |
"request": "launch", | |
"cwd": "${workspaceRoot}", | |
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd", | |
"protocol": "legacy", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* by Adrian Statescu <[email protected]> | |
* Twitter: @thinkphp | |
* G+ : http://gplus.to/thinkphp | |
* MIT Style License | |
*/ | |