mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
17 lines
626 B
TypeScript
17 lines
626 B
TypeScript
@unmanaged
|
|
export class StackDescriptor {
|
|
/** The index in linear memory of the start of the “asyncify stack”. */
|
|
stackStart: usize;
|
|
/** The index of the end of that stack region, which implies how big it is. */
|
|
stackEnd: usize;
|
|
}
|
|
|
|
/** Starts to unwind the call stack. */
|
|
export declare function start_unwind(data: StackDescriptor): void;
|
|
/** Stops unwinding the call stack. */
|
|
export declare function stop_unwind(): void;
|
|
/** Starts to rewind the call stack. */
|
|
export declare function start_rewind(data: StackDescriptor): void;
|
|
/** Stops rewinding the call stack. */
|
|
export declare function stop_rewind(): void;
|