smartpdf/ts/index.ts

16 lines
317 B
TypeScript
Raw Permalink Normal View History

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