博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery.json的TypeScript声明文件(jquery.json.d.ts)
阅读量:5112 次
发布时间:2019-06-13

本文共 1120 字,大约阅读时间需要 3 分钟。

因用TypeScript时,NuGet没有jquery.json的声明文件下载,自己写了一个。分享一下。

interface JQueryStatic {    /**     * Converts the given argument into a JSON representation.     *     * @param o {Mixed} The json-serializable *thing* to be converted     *     * If an object has a toJSON prototype, that will be used to get the representation.     * Non-integer/string keys are skipped in the object, as are keys that point to a     * function.     *     */    toJSON(o: any): string;    /**     * Evaluates a given json string.     *     * @param str {String}     */    evalJSON(str: string): boolean;    /**     * Evals JSON in a way that is *more* secure.     *     * @param str {String}     */    secureEvalJSON(str: string): boolean;    /**     * Returns a string-repr of a string, escaping quotes intelligently.     * Mostly a support function for toJSON.     * Examples:     * >>> jQuery.quoteString('apple')     * "apple"     *     * >>> jQuery.quoteString('"Where are we going?", she asked.')     * "\"Where are we going?\", she asked."     */    quoteString(str: string): string;}

 

转载于:https://www.cnblogs.com/badtree/articles/6022147.html

你可能感兴趣的文章
linux中启动与终止lnmp的脚本
查看>>
gdb中信号的处理[转]
查看>>
LeetCode【709. 转换成小写字母】
查看>>
如何在Access2007中使用日期类型查询数据
查看>>
Jzoj4757 树上摩托
查看>>
CF992E Nastya and King-Shamans(线段树二分+思维)
查看>>
oracle 几个时间函数探究
查看>>
第一个Java Web程序
查看>>
树状数组_一维
查看>>
如果没有按照正常的先装iis后装.net的顺序,可以使用此命令重新注册一下:
查看>>
linux install ftp server
查看>>
嵌入式软件设计第8次实验报告
查看>>
算法和数据结构(三)
查看>>
Ubuntu下的eclipse安装subclipse遇到没有javahl的问题...(2天解决了)
查看>>
alter database databasename set single_user with rollback IMMEDIATE 不成功问题
查看>>
Repeater + Resources 列表 [原创][分享]
查看>>
WCF揭秘——使用AJAX+WCF服务进行页面开发
查看>>
【题解】青蛙的约会
查看>>
IO流
查看>>
mybatis调用存储过程,获取返回的游标
查看>>