You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* 加法运算
|
|
* @param num1 数值1
|
|
* @param num2 数值2
|
|
*/
|
|
export declare function add(num1: number, num2: number): number;
|
|
|
|
declare module './ctor' {
|
|
interface XEUtilsMethods {
|
|
add: typeof add;
|
|
}
|
|
}
|
|
|
|
export default add
|
|
|