mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2026-02-20 13:40:30 +00:00
13 lines
207 B
TypeScript
13 lines
207 B
TypeScript
export default class FlowState {
|
|
public isAbort: boolean;
|
|
constructor() {
|
|
this.isAbort = false;
|
|
}
|
|
public abort() {
|
|
this.isAbort = true;
|
|
}
|
|
public reset() {
|
|
this.isAbort = false;
|
|
}
|
|
}
|