6 lines
261 B
TypeScript
6 lines
261 B
TypeScript
// This is essentially the same as image-to-pdf.
|
|
// Note: This is a legacy stub - scan-to-pdf functionality is now handled by image-to-pdf page
|
|
export const scanToPdf = () => {
|
|
console.warn('scan-to-pdf is deprecated, redirecting to image-to-pdf page');
|
|
};
|