- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
/**
|
|
* 获取封装的事件
|
|
* @protected
|
|
* @param {Object} obj 对象
|
|
* @param {String} action 事件名称
|
|
* @return {Function} 返回事件处理函数
|
|
*/
|
|
declare function getWrapBehavior(obj: object, action: string): Function;
|
|
export default getWrapBehavior;
|