mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-09-19 21:06:06 +08: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;
|
|
}
|
|
}
|