first commit
This commit is contained in:
39
FGUIProject/plugins/nbc-puerts-plugins/puerts.d.ts
vendored
Normal file
39
FGUIProject/plugins/nbc-puerts-plugins/puerts.d.ts
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
declare enum __Puerts_CSharpEnum { }
|
||||
|
||||
declare namespace puer {
|
||||
function $ref<T>(x?: T): CS.$Ref<T>;
|
||||
|
||||
function $unref<T>(x: CS.$Ref<T>): T;
|
||||
|
||||
function $set<T>(x: CS.$Ref<T>, val: T): void;
|
||||
|
||||
function $promise<T>(x: CS.$Task<T>): Promise<T>;
|
||||
|
||||
function $generic<T extends new (...args: any[]) => any>(genericType: T, ...genericArguments: (typeof __Puerts_CSharpEnum | (new (...args: any[]) => any))[]): T;
|
||||
|
||||
function $genericMethod(genericType: new (...args: any[]) => any, methodName: string, ...genericArguments: (typeof __Puerts_CSharpEnum | (new (...args: any[]) => any))[]): (...args: any[]) => any;
|
||||
|
||||
function $typeof(x: new (...args: any[]) => any): CS.System.Type;
|
||||
|
||||
function $extension(c: Function, e: Function): void;
|
||||
|
||||
function on(eventType: string, listener: Function, prepend?: boolean): void;
|
||||
|
||||
function off(eventType: string, listener: Function): void;
|
||||
|
||||
function emit(eventType: string, ...args: any[]): boolean;
|
||||
|
||||
function loadFile(name: string): { content: string, debugpath: string };
|
||||
|
||||
function evalScript(name: string): void;
|
||||
|
||||
function require(name: string): any;
|
||||
}
|
||||
|
||||
import puerts = puer;
|
||||
|
||||
// compat 1.4- version
|
||||
// 兼容1.4-版本,不需要可以注释掉
|
||||
declare module "puerts" {
|
||||
export = puerts;
|
||||
}
|
||||
Reference in New Issue
Block a user