TypedInterface:类型化接口允许您指定另一个对象必须定义的方法及其参数类型

时间:2024-08-04 12:40:45
【文件属性】:

文件名称:TypedInterface:类型化接口允许您指定另一个对象必须定义的方法及其参数类型

文件大小:5KB

文件格式:ZIP

更新时间:2024-08-04 12:40:45

JavaScript

类型接口 TypedInterface 允许您定义函数或方法必须接受的参数类型和返回类型。 用法 defineFunction 用于在给定上下文中包装函数。 您可以在本地上下文中传递this或什至是全局变量的window 。 参数 ctx定义函数的上下文(或环境或命名空间)。 name函数名 argTypes函数必须接受的有序类型数组 rType返回值类型 例子 Interface . defineFunction ( this , 'renderTasks' , [ Array ] , String ) ; function renderTasks ( tasks ) { return "Tasks: " + tasks . join ( ", " ) ; } try { renderTasks ( 1 , 2 ) ; } catch ( e ) { console


【文件预览】:
TypedInterface-master
----LICENSE(1KB)
----README.md(4KB)
----.gitignore(587B)
----index.js(7KB)
----package.json(515B)

网友评论