django-vue3-admin-web/node_modules/@interactjs/utils/misc.d.ts
2025-10-20 21:21:14 +08:00

5 lines
356 B
TypeScript

import type { ActionName, ActionProps } from '@interactjs/core/types';
export declare function warnOnce<T>(this: T, method: (...args: any[]) => any, message: string): (this: T) => any;
export declare function copyAction<T extends ActionName>(dest: ActionProps<any>, src: ActionProps<T>): ActionProps<any>;
export declare const sign: (n: number) => 1 | -1;