Skip to content

Commit 523e4fb

Browse files
committed
Fixed negation and count operator for custom functions
1 parent 01a5c7c commit 523e4fb

File tree

126 files changed

+282
-281
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+282
-281
lines changed

dist/native/file/pathExtensionName.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native/file/pathExtensionName.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native/file/pathExtensionName.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native/other/callFunction.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native/other/callFunction.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native/other/callFunction.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native/unsafe/loadEmojiContext.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native/unsafe/loadEmojiContext.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native/unsafe/loadEmojiContext.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/structures/forge/ForgeFunction.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ArgType, Context, IArg, NativeFunction } from "..";
1+
import { ArgType, CompiledFunction, Context, IArg, NativeFunction } from "..";
22
import { IExtendedCompilationResult } from "../../core";
33
import { Return, ReturnType } from "../@internal/Return";
44
export interface IForgeFunctionParam {
@@ -21,6 +21,6 @@ export declare class ForgeFunction {
2121
constructor(data: IForgeFunction);
2222
populate(): void;
2323
asNative(): NativeFunction<IArg<ArgType.String, boolean, boolean, import("..").EnumLike<any>>[], any>;
24-
call(ctx: Context, args: string[]): Promise<Return<ReturnType.Error> | Return<ReturnType.Stop | ReturnType.Success>>;
24+
call(ctx: Context, fn: CompiledFunction, args: string[]): Promise<Return<ReturnType.Success> | Return<ReturnType.Error> | Return<ReturnType.Stop>>;
2525
}
2626
//# sourceMappingURL=ForgeFunction.d.ts.map

0 commit comments

Comments
 (0)