@progress/kendo-react-pdf
Version:
React PDF Processing enables you to export single- and multi-page content in PDF. KendoReact PDF Processing package
52 lines (51 loc) • 1.51 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* @hidden
*/
export declare const hasClasses: (element: HTMLElement, classNames: string) => boolean;
/**
* @hidden
*/
export declare const matchesClasses: (classNames: string) => (element: HTMLElement) => boolean;
/**
* @hidden
*/
export declare const matchesNodeName: (nodeName: string) => any;
/**
* @hidden
*/
export declare const closest: (node: any, predicate: any) => any;
/**
* @hidden
*/
export declare const closestInScope: (node: any, predicate: any, scope: any) => any;
/**
* @hidden
*/
export declare const contains: (parent: any, node: any, matchSelf?: boolean) => any;
/**
* @hidden
*/
export declare const isVisible: (element: any) => boolean;
/**
* @hidden
*/
export declare const isFocusable: (element: any, checkVisibility?: boolean) => boolean;
/**
* @hidden
*/
export declare const findElement: (node: any, predicate: (element: any) => boolean, matchSelf?: boolean) => any;
/**
* @hidden
*/
export declare const findFocusable: (element: any, checkVisibility?: boolean) => any;
/**
* @hidden
*/
export declare const findFocusableChild: (element: any, checkVisibility?: boolean) => any;