Sunjammer / servicenow.hx

Tools for writing ServiceNow script through Haxe 4

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Haxe externs and tools for complex ServiceNow scripting

A man can dream!

Externs built with dts2hx by haxiomic from typings created by Arnoud Kooi for sn-scriptsync.

Zero thanks to ServiceNow themselves, who said straight up "no" to offering d.ts files for public consumption.

package;
import GlideGlobal.*;

class Main {
	public static function main() {
		var gr = new GlideRecord('incident');
		gr.addQuery('foo', 'bar');
		gr.query();
		while (gr.next()) {
			gs.addInfoMessage("Oh hi " + gr.getValue('number'));
		}
	}
}

About

Tools for writing ServiceNow script through Haxe 4


Languages

Language:Haxe 100.0%