File size: 214 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
const copy: ((str?: string, options?: object) => void) & {
lastStr?: string;
lastOptions?: object;
} = (str = '', options = {}) => {
copy.lastStr = str;
copy.lastOptions = options;
};
export default copy;
|