Acts types
export interface Acts {
[key: string]: {
[key: string]: Act;
};
}
Acts include two features : dynamic and static dynamic for dynamic request and static for static request
Types
Act
export interface Acts {
[key: string]: {
[key: string]: Act;
};
}
Acts include two features : dynamic and static dynamic for dynamic request and static for static request
Act