Simple feedback server

This commit is contained in:
2023-08-13 15:06:45 -06:00
parent 7ec5117480
commit 6f6c8685a2
1697 changed files with 3346391 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package js.lib;
typedef StringConstructor = {
@:selfCall
function call(?value:Dynamic):String;
final prototype : String;
function fromCharCode(codes:haxe.extern.Rest<Float>):String;
/**
Return the String value whose elements are, in order, the elements in the List elements.
If length is 0, the empty string is returned.
**/
function fromCodePoint(codePoints:haxe.extern.Rest<Float>):String;
/**
String.raw is intended for use as a tag function of a Tagged Template String. When called
as such the first argument will be a well formed template call site object and the rest
parameter will contain the substitution values.
**/
function raw(template:TemplateStringsArray, substitutions:haxe.extern.Rest<Dynamic>):String;
};