mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 15:32:16 +00:00
8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
|
/** Environment abort function called where assertions evaluate to false / on throw. */
|
||
|
declare function abort(
|
||
|
message?: string | null,
|
||
|
fileName?: string | null,
|
||
|
lineNumber?: u32,
|
||
|
columnNumber?: u32
|
||
|
): void;
|