mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-11-16 01:21:16 +01:00
14 lines
505 B
TypeScript
14 lines
505 B
TypeScript
import { useBaseParameters } from '../shared/useBaseParameters';
|
|
|
|
export type RemoveAnnotationsParameters = Record<string, never>
|
|
|
|
export const defaultParameters: RemoveAnnotationsParameters = {
|
|
};
|
|
|
|
export const useRemoveAnnotationsParameters = () => {
|
|
return useBaseParameters<RemoveAnnotationsParameters>({
|
|
defaultParameters,
|
|
endpointName: 'remove-annotations', // Not used for client-side processing, but required by base hook
|
|
validateFn: () => true, // No parameters to validate
|
|
});
|
|
}; |