2018-10-06 15:51:53 +00:00
|
|
|
// compatibility
|
|
|
|
declare global {
|
2019-05-28 21:57:50 +00:00
|
|
|
interface Element {}
|
|
|
|
interface Node {}
|
|
|
|
interface NodeListOf<TNode = Node> {}
|
2018-10-06 15:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// normal
|
2022-03-24 13:32:49 +00:00
|
|
|
export * from './smartpdf.classes.smartpdf.js';
|
2022-11-07 22:11:29 +00:00
|
|
|
|
|
|
|
// additional types
|
|
|
|
import type * as tsclassTypes from '@tsclass/tsclass';
|
|
|
|
type IPdf = tsclassTypes.business.IPdf;
|
|
|
|
|
2023-07-26 12:17:11 +00:00
|
|
|
export type { IPdf };
|