ant-design/tests/__mocks__/copy-to-clipboard.ts
2023-06-07 21:59:21 +08:00

10 lines
217 B
TypeScript

const copy: ((str?: string, options?: object) => void) & {
lastStr?: string;
lastOptions?: object;
} = (str: string, options = {}) => {
copy.lastStr = str;
copy.lastOptions = options;
};
export default copy;