init
This commit is contained in:
4
types/component/inputNumber/index.d.ts
vendored
Normal file
4
types/component/inputNumber/index.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
import { WithInstallType } from "../../utils";
|
||||
import Component from "./index.vue";
|
||||
declare const component: WithInstallType<typeof Component>;
|
||||
export default component;
|
||||
1
types/component/inputNumber/interface.d.ts
vendored
Normal file
1
types/component/inputNumber/interface.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export declare type InputNumberSize = "lg" | "md" | "sm" | "xs";
|
||||
3
types/component/inputNumber/math.d.ts
vendored
Normal file
3
types/component/inputNumber/math.d.ts
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
declare function add(arg1: number, arg2: number): number;
|
||||
declare function sub(arg1: number, arg2: number): number;
|
||||
export { add, sub };
|
||||
Reference in New Issue
Block a user