Skip to content

Commit 539d9a0

Browse files
committed
Added local functions
1 parent aaad747 commit 539d9a0

File tree

134 files changed

+495
-259
lines changed

Some content is hidden

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

134 files changed

+495
-259
lines changed

dist/native/other/callFunction.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ declare const _default: NativeFunction<[{
1010
description: string;
1111
rest: true;
1212
type: ArgType.String;
13-
required: true;
1413
}], true>;
1514
export default _default;
1615
//# sourceMappingURL=callFunction.d.ts.map

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: 0 additions & 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.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction";
2+
declare const _default: NativeFunction<[{
3+
name: string;
4+
description: string;
5+
rest: false;
6+
required: true;
7+
type: ArgType.String;
8+
}, {
9+
name: string;
10+
description: string;
11+
rest: true;
12+
type: ArgType.String;
13+
}], true>;
14+
export default _default;
15+
//# sourceMappingURL=callLocalFunction.d.ts.map

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

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/other/callLocalFunction.js

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

dist/native/other/callLocalFunction.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import { ArgType, NativeFunction } from "../../structures/@internal/NativeFunction";
2+
declare const _default: NativeFunction<[{
3+
name: string;
4+
description: string;
5+
rest: false;
6+
required: true;
7+
type: ArgType.String;
8+
}, {
9+
name: string;
10+
description: string;
11+
rest: false;
12+
required: true;
13+
type: ArgType.String;
14+
}, {
15+
name: string;
16+
description: string;
17+
rest: true;
18+
type: ArgType.String;
19+
}], false>;
20+
export default _default;
21+
//# sourceMappingURL=localFunction.d.ts.map

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

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

0 commit comments

Comments
 (0)