initial commit
This commit is contained in:
16
lib/dts/bt-flow/flow/flow-objects/Activity.d.ts
vendored
Normal file
16
lib/dts/bt-flow/flow/flow-objects/Activity.d.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import Procedure from './Procedure';
|
||||
import Transition from './Transition';
|
||||
declare class Activity {
|
||||
class: string;
|
||||
assetPack: string;
|
||||
id: string;
|
||||
name: string;
|
||||
procedure: Procedure;
|
||||
transitions: Transition[];
|
||||
exceptions: Transition[];
|
||||
options: any;
|
||||
constructor(name: string, id: string, className: string, assetPack: string, options: any);
|
||||
set_transitions(transitions: Transition[]): void;
|
||||
set_exceptions(exceptions: Transition[]): void;
|
||||
}
|
||||
export default Activity;
|
||||
Reference in New Issue
Block a user