8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
import { BehaviorRecorder, IAnyBehaviorRecorder } from "@Model/Behavior";
|
|
import { Template } from "./Template";
|
|
|
|
const AllBehaviors: IAnyBehaviorRecorder[] = [
|
|
new BehaviorRecorder(Template)
|
|
]
|
|
|
|
export { AllBehaviors }; |